We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 752344d commit dfe2457Copy full SHA for dfe2457
.github/workflows/ci.yml
@@ -20,8 +20,18 @@ jobs:
20
- run: exit 1
21
if: |
22
(needs.test.result != 'success')
23
+
24
+ format:
25
+ name: Format check
26
+ runs-on: ubuntu-latest
27
+ steps:
28
+ - uses: julia-actions/julia-format@v3
29
+ with:
30
+ version: '2.1.1'
31
32
test:
33
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
34
+ needs: [format]
35
runs-on: ${{ matrix.os }}
36
strategy:
37
fail-fast: false
.github/workflows/format.yml
0 commit comments