Skip to content

Commit

Permalink
Merge pull request #1 from tensor4all/ci
Browse files Browse the repository at this point in the history
Fix CI
  • Loading branch information
shinaoka authored May 19, 2024
2 parents 23287d2 + af4d18b commit 1c1f912
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: CI
on:
push:
branches:
- main
- '**'
pull_request:
branches:
- main
Expand Down Expand Up @@ -33,6 +33,13 @@ jobs:
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- name: Add Julia Registries
run: |
julia -e '
using Pkg
Pkg.Registry.add(
RegistrySpec(url = "https://github.com/tensor4all/T4ARegistry.git")
)'
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
Expand All @@ -47,8 +54,15 @@ jobs:
- uses: julia-actions/setup-julia@v2
with:
version: '1'
- name: Add Julia Registries
run: |
julia -e '
using Pkg
Pkg.Registry.add(
RegistrySpec(url = "https://github.com/tensor4all/T4ARegistry.git")
)'
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-docdeploy@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}

0 comments on commit 1c1f912

Please sign in to comment.