Bump actions/checkout from 5 to 6 (#111) #319
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: continuous-integration | |
| concurrency: | |
| group: ${{ github.head_ref }}.ci | |
| cancel-in-progress: true | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - 'LICENSE.md' | |
| - 'README.md' | |
| - 'examples/**' | |
| pull_request: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - 'LICENSE.md' | |
| - 'README.md' | |
| - 'examples/**' | |
| jobs: | |
| ci: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| version: [min, 1] | |
| os: [ubuntu-22.04, macos-14] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Julia Setup | |
| uses: julia-actions/setup-julia@v2 | |
| with: | |
| version: ${{ matrix.version }} | |
| - name: Cache | |
| uses: julia-actions/cache@v2 | |
| with: | |
| cache-compiled: "true" | |
| - name: Build | |
| uses: julia-actions/julia-buildpkg@v1 | |
| - name: Test | |
| uses: julia-actions/julia-runtest@v1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Percy Upload | |
| if: ${{ matrix.version == 'min' }} | |
| run: | | |
| ls ./test/output/ # useful for debugging | |
| npx @percy/cli upload ./test/output | |
| env: | |
| PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }} | |
| - name: Coverage Process | |
| uses: julia-actions/julia-processcoverage@v1 | |
| - name: Coverage Upload | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} |