Auto-tuning Julia kernels #786
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
| # This workflow will use Nox to run tests and lint for the supported Python versions, and upload the test coverage data. | |
| name: Test | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - release/* | |
| pull_request: | |
| branches: | |
| - master | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| name: Test on ${{ matrix.os }} with all supported Python versions | |
| runs-on: ${{ format('{0}', matrix.os) }} # "-latest" is added here so we can use OS in the format expected by CodeCov | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest] | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Setup Nox | |
| uses: fjwillemsen/setup-nox2@v3.0.0 | |
| - name: Setup Poetry | |
| uses: Gr1N/setup-poetry@v9 | |
| - run: poetry self add poetry-plugin-export | |
| - uses: julia-actions/setup-julia@v3 | |
| with: | |
| version: '1.11' # when changed, also see `require_julia` in noxfile.py and the Julia version in Project.toml | |
| - name: Run tests with Nox | |
| run: | | |
| rm -rf .nox | |
| pip install nox-poetry | |
| nox -- skip-gpu skip-julia github-action | |
| - name: Run Julia tests with Nox | |
| run: | | |
| rm -rf .nox | |
| [ -d "/Users/runner" ] && mkdir -p /Users/runner/.julia/registries | |
| pip install nox-poetry | |
| nox --session tests-3.14 -- skip-gpu github-action | |
| # - name: Upload Coverage report to CodeCov | |
| # uses: codecov/codecov-action@v3 | |
| # with: | |
| # token: ${{ secrets.CODECOV_TOKEN }} | |
| # files: ./coverage | |
| # os: ${{ matrix.os }} | |
| # fail_ci_if_error: false # option to Specify if CI pipeline should fail when Codecov runs into errors during upload |