Skip to content

Commit

Permalink
ci: standardise the tests workflow, using the reusable workflow
Browse files Browse the repository at this point in the history
* Standardise the tests workflow, using the reusab SciML tests workflow.
* Rename the tests workflow to `Tests.yml`, instead of `CI.yml`, since
it's more semantically correct and CI encompasses all the workflows that
are run.
  • Loading branch information
thazhemadam committed Apr 23, 2024
1 parent 550eb77 commit 75100a8
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 44 deletions.
44 changes: 0 additions & 44 deletions .github/workflows/CI.yml

This file was deleted.

27 changes: 27 additions & 0 deletions .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: "Run Tests"

on:
push:
branches:
- 'master'
pull_request:
branches:
- 'master'

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:
group:
- Core
uses: "SciML/.github/.github/workflows/tests.yml@v1"
with:
group: ${{ matrix.group }}
julia-version: '1'
secrets: "inherit"

0 comments on commit 75100a8

Please sign in to comment.