Skip to content

Commit 309ac7a

Browse files
committed
Big changes.
1 parent 04dc7b3 commit 309ac7a

File tree

3 files changed

+20
-24
lines changed

3 files changed

+20
-24
lines changed

.github/workflows/CI.yml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,22 @@
11
name: CI
22
on:
3+
pull_request:
4+
branches:
5+
- master
36
push:
47
branches:
58
- master
6-
tags: ['*']
7-
pull_request:
8-
workflow_dispatch:
9-
concurrency:
10-
# Skip intermediate builds: always.
11-
# Cancel intermediate builds: only if it is a pull request build.
12-
group: ${{ github.workflow }}-${{ github.ref }}
13-
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
9+
tags: '*'
1410
jobs:
1511
test:
1612
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
1713
runs-on: ${{ matrix.os }}
18-
timeout-minutes: 60
19-
permissions: # needed to allow julia-actions/cache to proactively delete old caches that it has created
20-
actions: write
21-
contents: read
2214
strategy:
2315
fail-fast: false
2416
matrix:
2517
version:
26-
- '1.10'
27-
- '1.6'
28-
- 'pre'
18+
- '1.6' # Replace this with the minimum Julia version that your package supports. E.g. if your package requires Julia 1.9 or higher, change this to '1.9'.
19+
- '1' # Leave this line unchanged. '1' will automatically expand to the latest stable 1.x release of Julia.
2920
os:
3021
- ubuntu-latest
3122
arch:
@@ -36,6 +27,15 @@ jobs:
3627
with:
3728
version: ${{ matrix.version }}
3829
arch: ${{ matrix.arch }}
39-
- uses: julia-actions/cache@v2
30+
- uses: actions/cache@v4
31+
env:
32+
cache-name: cache-artifacts
33+
with:
34+
path: ~/.julia/artifacts
35+
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
36+
restore-keys: |
37+
${{ runner.os }}-test-${{ env.cache-name }}-
38+
${{ runner.os }}-test-
39+
${{ runner.os }}-
4040
- uses: julia-actions/julia-buildpkg@v1
4141
- uses: julia-actions/julia-runtest@v1

.github/workflows/TagBot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
workflow_dispatch:
77
inputs:
88
lookback:
9-
default: "3"
9+
default: 3
1010
permissions:
1111
actions: read
1212
checks: read

docs/Project.toml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
[deps]
2-
AbstractAlgebra = "c3fe647b-3220-5bb0-a1ea-a7954cac585d"
3-
Combinatorics = "861a8166-3701-5b0c-9a16-15d98fcdc6aa"
42
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
5-
HiGHS = "87dc4568-4c63-4d18-b0c0-bb2238e4078b"
6-
JuMP = "4076af6c-e467-56ae-b986-b466b2749572"
7-
Primes = "27ebfcd6-29c5-5fa9-bf4b-fb8fc14df3ae"
8-
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
9-
SymEngine = "123dc426-2d89-5057-bbad-38513e3affd8"
3+
4+
[compat]
5+
Documenter = "1"

0 commit comments

Comments
 (0)