Add hash method for quantities #759
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: CI | |
| on: | |
| push: | |
| branches: "master" | |
| tags: ["*"] | |
| paths: | |
| - '.github/workflows/ci.yml' | |
| - 'src/**' | |
| - 'test/**' | |
| - 'Project.toml' | |
| pull_request: | |
| paths: | |
| - '.github/workflows/ci.yml' | |
| - 'src/**' | |
| - 'test/**' | |
| - 'Project.toml' | |
| release: | |
| concurrency: | |
| # Skip intermediate builds: always. | |
| # Cancel intermediate builds: only if it is a pull request build. | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} | |
| jobs: | |
| test: | |
| name: Julia ${{ matrix.julia-version }} - ${{ matrix.os }} - ${{ matrix.julia-arch }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| julia-version: | |
| - "min" | |
| - "lts" | |
| - "1" | |
| - "pre" | |
| os: | |
| - ubuntu-latest | |
| - macos-latest | |
| - windows-latest | |
| julia-arch: | |
| - "default" | |
| # Until minimum supported version is v1.6, we can't test on Apple | |
| # Silicon macOS for that version and we need to use Julia v1.8 instead | |
| exclude: | |
| - julia-version: "min" | |
| os: macos-latest | |
| include: | |
| - julia-version: "1.8" | |
| os: macos-latest | |
| julia-arch: "default" | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: julia-actions/setup-julia@v2 | |
| with: | |
| version: ${{ matrix.julia-version }} | |
| arch: ${{ matrix.julia-arch }} | |
| - uses: julia-actions/cache@v2 | |
| - uses: julia-actions/julia-buildpkg@v1 | |
| - uses: julia-actions/julia-runtest@v1 | |
| - uses: julia-actions/julia-processcoverage@v1 | |
| - uses: codecov/codecov-action@v5 | |
| with: | |
| files: lcov.info | |
| fail_ci_if_error: false | |
| - uses: coverallsapp/github-action@v2 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| path-to-lcov: lcov.info | |
| flag-name: run-${{ join(matrix.*, '-') }} | |
| parallel: true |