Skip to content

Commit

Permalink
ci: update the tests workflow to use the centralised reusable workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
thazhemadam committed Apr 30, 2024
1 parent c9c1fb5 commit 2e80b88
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 46 deletions.
46 changes: 0 additions & 46 deletions .github/workflows/CI.yml

This file was deleted.

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

on:
pull_request:
branches:
- main
paths-ignore:
- 'docs/**'
push:
branches:
- main
paths-ignore:
- 'docs/**'
schedule:
- cron: '40 16 * * 3'

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"
uses: "SciML/.github/.github/workflows/tests.yml@v1"
secrets: "inherit"

0 comments on commit 2e80b88

Please sign in to comment.