Improve bit-twiddling for counting #808
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: Unit tests | |
| on: | |
| - push | |
| - pull_request | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| continue-on-error: ${{ matrix.experimental }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| julia-version: ['1', '1.10'] | |
| os: [ubuntu-latest, macOS-latest, windows-latest] | |
| experimental: [false] | |
| include: | |
| # Include nightly, but experimental, so it's allowed to fail without | |
| # failing CI. | |
| - julia-version: nightly | |
| os: ubuntu-latest | |
| experimental: true | |
| fail_ci_if_error: false | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v3 | |
| - name: Setup Julia | |
| uses: julia-actions/setup-julia@latest | |
| with: | |
| version: ${{ matrix.julia-version }} | |
| - name: Run Tests | |
| uses: julia-actions/julia-runtest@latest | |
| - name: Create CodeCov | |
| uses: julia-actions/julia-processcoverage@latest | |
| - name: Upload CodeCov | |
| uses: codecov/codecov-action@v4 | |
| with: | |
| file: ./lcov.info | |
| flags: unittests | |
| name: codecov-umbrella | |
| fail_ci_if_error: false | |
| token: ${{ secrets.CODECOV_TOKEN }} |