Skip to content

Commit

Permalink
Merge branch 'develop' into release/v0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
AP6YC committed Jan 18, 2024
2 parents 80e481d + feee99a commit b9c5820
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 8 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,16 @@ on:
# schedule:
# - cron: '0 2 * * *' # Daily at 2 AM UTC (8 PM CST)
push:
branches: [main]
branches:
- main
- develop
tags: ["*"]
pull_request:

# needed to allow julia-actions/cache to delete old caches that it has created
permissions:
actions: write
contents: read
# # needed to allow julia-actions/cache to delete old caches that it has created
# permissions:
# actions: write
# contents: read

jobs:
test:
Expand Down
11 changes: 8 additions & 3 deletions .github/workflows/Documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,21 @@ jobs:
# Cancel ongoing documentation build if pushing to branch again before the previous
# build is finished.
- name: Cancel ongoing documentation builds for previous commits
uses: styfle/cancel-workflow-action@0.9.1
uses: styfle/cancel-workflow-action@0.11.0
with:
access_token: ${{ github.token }}

- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
lfs: 'true'
- name: Cache Julia Dependencies
uses: julia-actions/cache@v1
with:
cache-name: julia-cache;workflow=${{ github.workflow }};hash=${{ hashFiles('**/Project.toml') }};
- uses: julia-actions/setup-julia@latest
with:
version: '1.9'
# Latest Julia version
version: "1"
- name: Install dependencies
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
- name: Build and deploy
Expand Down

0 comments on commit b9c5820

Please sign in to comment.