Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

Commit

Permalink
Merge pull request #24 from SciML/at/use-reusable-workflows
Browse files Browse the repository at this point in the history
ci: update tests workflow to use centralised reusable workflow
  • Loading branch information
ChrisRackauckas authored Jul 29, 2024
2 parents 486be76 + 870beeb commit a3513dd
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 43 deletions.
43 changes: 0 additions & 43 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: "Tests"

on:
pull_request:
branches:
- master
push:
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:
version:
- "1"
- "1.6"
uses: "SciML/.github/.github/workflows/tests.yml@v1"
with:
julia-version: "${{ matrix.version }}"
secrets: "inherit"

0 comments on commit a3513dd

Please sign in to comment.