Bump version from 0.5.4 to 0.5.5 (#60) #239
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- 'LICENSE.md' | |
- 'README.md' | |
- '.github/workflows/TagBot.yml' | |
push: | |
tags: '*' | |
branches: | |
- main | |
paths-ignore: | |
- 'LICENSE.md' | |
- 'README.md' | |
- '.github/workflows/TagBot.yml' | |
jobs: | |
test: | |
timeout-minutes: 30 | |
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
arch: | |
- x64 | |
- x86 | |
exclusive: | |
- '0' | |
os: | |
- ubuntu-latest | |
- windows-latest | |
- macos-13 # Intel | |
threads: | |
- '5' | |
version: | |
- '1.5' | |
- '1' | |
exclude: | |
- os: macos-13 | |
arch: x86 # 32-bit Julia binaries are not available on macOS | |
include: | |
- arch: aarch64 | |
exclusive: '0' | |
os: macos-latest # Arm | |
threads: '5' | |
version: '1' # macos-latest (aarch64) need Julia >= v1.8+ | |
# (exclusive=1, threads=2) | |
- arch: x64 | |
exclusive: '1' | |
os: ubuntu-latest | |
threads: '2' | |
version: '1' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@v2 | |
with: | |
version: ${{ matrix.version }} | |
arch: ${{ matrix.arch }} | |
- uses: julia-actions/cache@v2 | |
- uses: julia-actions/julia-buildpkg@v1 | |
- uses: julia-actions/julia-runtest@v1 | |
env: | |
JULIA_EXCLUSIVE: ${{ matrix.exclusive }} | |
JULIA_NUM_THREADS: ${{ matrix.threads }} | |
- uses: julia-actions/julia-processcoverage@v1 | |
- uses: codecov/codecov-action@v5 | |
with: | |
files: lcov.info | |
docs: | |
name: Documentation | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@v2 | |
with: | |
version: '1' | |
- run: | | |
julia --project=docs -e ' | |
using Pkg | |
Pkg.develop(PackageSpec(path=pwd())) | |
Pkg.instantiate()' | |
- run: | | |
julia --project=docs -e ' | |
using Documenter: doctest | |
using ThreadingUtilities | |
doctest(ThreadingUtilities)' | |
- run: julia --project=docs docs/make.jl | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} |