Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/sumiya11/Groebner.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
sumiya11 committed Jan 27, 2024
2 parents f5db8f9 + c289fb1 commit ccf498a
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/Downstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
julia-version: [1.7]
julia-version: [1, 1.6]
os: [ubuntu-latest]
package:
- {user: JuliaSymbolics, repo: Symbolics.jl, group: All}
Expand All @@ -23,14 +23,14 @@ jobs:
- {user: sumiya11, repo: ParamPunPam.jl, group: All}

steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.julia-version }}
arch: x64
- uses: julia-actions/julia-buildpkg@latest
- name: Clone Downstream
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: ${{ matrix.package.user }}/${{ matrix.package.repo }}
path: downstream
Expand Down
14 changes: 12 additions & 2 deletions .github/workflows/Runtests.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Runtests
on: [push, pull_request]
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
Expand All @@ -13,6 +13,16 @@ jobs:
- uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.julia-version }}
- 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:
Expand All @@ -21,4 +31,4 @@ jobs:
- uses: codecov/codecov-action@v3
with:
file: lcov.info


0 comments on commit ccf498a

Please sign in to comment.