This repository was archived by the owner on Sep 3, 2025. It is now read-only.
Bump crate-ci/typos from 1.34.0 to 1.35.8 (#15) #41
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: | |
| - main | |
| paths-ignore: | |
| - 'AUTHORS.md' | |
| - 'LICENSE.md' | |
| - 'README.md' | |
| pull_request: | |
| paths-ignore: | |
| - 'AUTHORS.md' | |
| - 'LICENSE.md' | |
| - 'README.md' | |
| workflow_dispatch: | |
| # Cancel redundant CI tests automatically | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| if: "!contains(github.event.head_commit.message, 'skip ci')" | |
| # We could also include the Julia version as in | |
| # name: ${{ matrix.trixi_test }} - ${{ matrix.os }} - Julia ${{ matrix.version }} - ${{ matrix.arch }} - ${{ github.event_name }} | |
| # to be more specific. However, that requires us updating the required CI tests whenever we update Julia. | |
| name: ${{ matrix.trixi_test }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| version: | |
| - '1.9' | |
| os: | |
| - ubuntu-latest | |
| arch: | |
| - x64 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: julia-actions/setup-julia@v1 | |
| with: | |
| version: ${{ matrix.version }} | |
| arch: ${{ matrix.arch }} | |
| - run: julia -e 'using InteractiveUtils; versioninfo(verbose=true)' | |
| - uses: julia-actions/cache@v1 | |
| - uses: julia-actions/julia-buildpkg@v1 | |
| env: | |
| PYTHON: "" | |
| - name: Run tests with coverage | |
| uses: julia-actions/julia-runtest@v1 | |
| with: | |
| coverage: true | |
| - uses: julia-actions/julia-processcoverage@v1 | |
| with: | |
| directories: src,examples | |
| - uses: coverallsapp/github-action@master | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| flag-name: run-${{ matrix.trixi_test }}-${{ matrix.os }}-${{ matrix.version }}-${{ matrix.arch }}-${{ github.run_id }} | |
| parallel: false | |
| path-to-lcov: ./lcov.info |