feat: add disco103 - meta learned update rule #226
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Check Algorithms 🧪 | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| env: | |
| UV_SYSTEM_PYTHON: 1 | |
| jobs: | |
| test-algorithms: | |
| name: "Python ${{ matrix.python-version }} on ${{ matrix.os }}" | |
| runs-on: "${{ matrix.os }}" | |
| timeout-minutes: 360 | |
| strategy: | |
| matrix: | |
| python-version: ["3.10"] | |
| os: [ubuntu-latest] | |
| steps: | |
| - name: Checkout stoix | |
| uses: actions/checkout@v4 | |
| - name: Install uv and set the python version | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install the project | |
| run: uv sync --dev | |
| - name: Make Bash Script Executable | |
| run: chmod +x bash_scripts/run-algorithms.sh | |
| - name: Run Bash Script | |
| run: ./bash_scripts/run-algorithms.sh |