Skip to content

Commit

Permalink
Bump version (0.2.2)
Browse files Browse the repository at this point in the history
  • Loading branch information
HlisTilen committed Sep 18, 2024
1 parent 5116c6a commit 87f97e1
Showing 1 changed file with 2 additions and 25 deletions.
27 changes: 2 additions & 25 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ jobs:
test_nightly:
name: Julia Nightly ${{ matrix.os }} - ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
continue-on-error: true # Allow failure for nightly builds
strategy:
fail-fast: false
matrix:
Expand All @@ -51,31 +52,7 @@ jobs:
with:
version: 'nightly'
arch: ${{ matrix.arch }}
- run: julia --project=@. -e 'using Pkg; Pkg.build(); Pkg.precompile()'
continue-on-error: true # Prevent failures from stopping the job
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1

docs:
name: Documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
with:
version: '1.9'
- run: |
julia --project=docs -e '
using Pkg
Pkg.develop(PackageSpec(path=pwd()))
Pkg.instantiate()'
- run: |
julia --project=docs -e '
using Documenter: doctest
using TCXReader
doctest(TCXReader)'
- run: julia --project=docs docs/make.jl
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
continue-on-error: true # Continue on error for nightly

0 comments on commit 87f97e1

Please sign in to comment.