diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml deleted file mode 100644 index daf389b..0000000 --- a/.github/workflows/CI.yml +++ /dev/null @@ -1,82 +0,0 @@ -name: CI - -on: - push: - branches: - - master - pull_request: - -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: - continue-on-error: ${{ matrix.version == 'nightly' }} - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - version: - - '1' - os: - - ubuntu-latest - arch: - - x64 - - x86 - group: - - Interface - - Integrators - - Regression - exclude: # test 32bit only with Julia 1 but not LTS - - version: '1.6' - arch: x86 - steps: - - uses: actions/checkout@v4 - - uses: julia-actions/setup-julia@v2 - with: - version: ${{ matrix.version }} - arch: ${{ matrix.arch }} - - uses: actions/cache@v4 - env: - cache-name: cache-artifacts - with: - path: ~/.julia/artifacts - key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }} - restore-keys: | - ${{ runner.os }}-test-${{ env.cache-name }}- - ${{ runner.os }}-test- - ${{ runner.os }}- - - uses: julia-actions/julia-buildpkg@latest - - uses: julia-actions/julia-runtest@latest - with: - coverage: ${{ matrix.version == '1' && matrix.arch == 'x64' }} - env: - GROUP: ${{ matrix.group }} - - uses: julia-actions/julia-processcoverage@v1 - if: matrix.version == '1' && matrix.arch == 'x64' - - uses: codecov/codecov-action@v4 - if: matrix.version == '1' && matrix.arch == 'x64' - with: - file: lcov.info - token: ${{ secrets.CODECOV_TOKEN }} # required - fail_ci_if_error: true - - uses: coverallsapp/github-action@master - if: matrix.version == '1' && matrix.arch == 'x64' - with: - github-token: ${{ secrets.GITHUB_TOKEN }} - path-to-lcov: lcov.info - flag-name: group-${{ matrix.group }} # unique name for coverage report of each group - parallel: true - # combine coveralls coverage reports - finish: - needs: test - runs-on: ubuntu-latest - steps: - - name: Coveralls Finished - uses: coverallsapp/github-action@master - with: - github-token: ${{ secrets.GITHUB_TOKEN }} - parallel-finished: true diff --git a/.github/workflows/Tests.yml b/.github/workflows/Tests.yml new file mode 100644 index 0000000..7f36878 --- /dev/null +++ b/.github/workflows/Tests.yml @@ -0,0 +1,42 @@ +name: "Run Tests" + +on: + push: + branches: + - master + pull_request: + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: ${{ github.ref_name != github.event.repository.default_branch || github.ref != 'refs/tags/v*' }} + +jobs: + tests: + name: "Tests" + strategy: + fail-fast: false + matrix: + version: + - '1' + arch: + - x64 + - x86 + group: + - Interface + - Integrators + - Regression + include: + - coverage: false + - version: '1' + arch: x64 + coverage: true + exclude: # test 32bit only with Julia 1 but not LTS + - version: '1.6' + arch: x86 + uses: "SciML/.github/.github/workflows/tests.yml@v1" + with: + group: ${{ matrix.group }} + julia-version: '1' + julia-arch: ${{ matrix.arch }} + coverage: ${{ matrix.coverage }} + secrets: "inherit"