Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
tkf authored May 25, 2022
1 parent 3a118e1 commit 0c68fbf
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 17 additions & 1 deletion ext/UnsafeAtomicsLLVM/.github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,22 @@ jobs:
flags: Pkg.test
name: codecov-umbrella

aqua:
runs-on: ubuntu-latest
strategy:
matrix:
julia-version:
- '1'
- '1.6'
- 'nightly'
fail-fast: false
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.julia-version }}
- uses: tkf/julia-aqua@v1

# https://github.com/tkf/julia-code-style-suggesters
code-style:
if: always() && github.event.pull_request
Expand All @@ -47,7 +63,7 @@ jobs:
# A job that succeeds if and only if all jobs succeed.
all-success:
if: always() && github.event.pull_request
needs: [test, code-style]
needs: [test, aqua, code-style]
runs-on: ubuntu-latest
steps:
# https://github.com/tkf/merge-conclusions-action
Expand Down
2 changes: 2 additions & 0 deletions ext/UnsafeAtomicsLLVM/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@ LLVM = "929cbde3-209d-540e-8aea-75f648917ca0"
UnsafeAtomics = "013be700-e6cd-48c3-b4a1-df204f14c38f"

[compat]
LLVM = "4.12"
UnsafeAtomics = "0.2"
julia = "1.6"

0 comments on commit 0c68fbf

Please sign in to comment.