From bb1d121801c06b465db675d2322c20d8d48bb1bd Mon Sep 17 00:00:00 2001 From: Sam Isaacson Date: Thu, 18 Jul 2024 09:06:26 -0400 Subject: [PATCH] Update Tests.yml To use the SciML standard action --- .github/workflows/Tests.yml | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/.github/workflows/Tests.yml b/.github/workflows/Tests.yml index b473f73..cd2b4d3 100644 --- a/.github/workflows/Tests.yml +++ b/.github/workflows/Tests.yml @@ -1,12 +1,16 @@ -name: "Tests" - +name: "Run Tests" on: push: branches: - - "main" - tags: - - "*" + - master + paths-ignore: + - 'docs/**' pull_request: + branches: + - master + paths-ignore: + - 'docs/**' + concurrency: group: ${{ github.workflow }}-${{ github.ref }} @@ -18,10 +22,11 @@ jobs: strategy: fail-fast: false matrix: - version: - - "1" - - "1.6" + group: + - Core uses: "SciML/.github/.github/workflows/tests.yml@v1" with: - julia-version: "${{ matrix.version }}" + group: ${{ matrix.group }} + julia-version: '1' secrets: "inherit" +