2 changed files with 61 additions and 0 deletions
@ -0,0 +1,46 @@ |
|||||||
|
name: CI |
||||||
|
|
||||||
|
on: |
||||||
|
push: |
||||||
|
branches: |
||||||
|
- 'master' |
||||||
|
- 'release-' |
||||||
|
tags: '*' |
||||||
|
pull_request: |
||||||
|
|
||||||
|
jobs: |
||||||
|
test: |
||||||
|
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ github.event_name }} |
||||||
|
runs-on: ${{ matrix.os }} |
||||||
|
strategy: |
||||||
|
matrix: |
||||||
|
version: |
||||||
|
- '1.6' |
||||||
|
- '1.7' |
||||||
|
- '1.8' |
||||||
|
- '1' |
||||||
|
- 'nightly' |
||||||
|
os: |
||||||
|
- ubuntu-latest |
||||||
|
include: |
||||||
|
- os: windows-latest |
||||||
|
version: '1' |
||||||
|
- os: macOS-latest |
||||||
|
version: '1' |
||||||
|
steps: |
||||||
|
- uses: actions/checkout@v4 |
||||||
|
- uses: julia-actions/setup-julia@v1 |
||||||
|
with: |
||||||
|
version: ${{ matrix.version }} |
||||||
|
- uses: actions/cache@v3 |
||||||
|
with: |
||||||
|
path: | |
||||||
|
~/.julia/artifacts |
||||||
|
~/.julia/packages |
||||||
|
~/.julia/registries |
||||||
|
key: .julia-test-${{ matrix.version }}-${{ hashFiles('Project.toml') }} |
||||||
|
- uses: julia-actions/julia-runtest@v1 |
||||||
|
- uses: julia-actions/julia-processcoverage@v1 |
||||||
|
- uses: codecov/codecov-action@v3 |
||||||
|
with: |
||||||
|
file: lcov.info |
||||||
@ -0,0 +1,15 @@ |
|||||||
|
name: TagBot |
||||||
|
on: |
||||||
|
issue_comment: |
||||||
|
types: |
||||||
|
- created |
||||||
|
workflow_dispatch: |
||||||
|
jobs: |
||||||
|
TagBot: |
||||||
|
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot' |
||||||
|
runs-on: ubuntu-latest |
||||||
|
steps: |
||||||
|
- uses: JuliaRegistries/TagBot@v1 |
||||||
|
with: |
||||||
|
token: ${{ secrets.GITHUB_TOKEN }} |
||||||
|
ssh: ${{ secrets.DOCUMENTER_KEY }} |
||||||
Loading…
Reference in new issue