Skip to content

Commit dfe2457

Browse files
committed
Move formatting workflow to ci.yml
1 parent 752344d commit dfe2457

File tree

2 files changed

+10
-11
lines changed

2 files changed

+10
-11
lines changed

.github/workflows/ci.yml

+10
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,18 @@ jobs:
2020
- run: exit 1
2121
if: |
2222
(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+
2332
test:
2433
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
34+
needs: [format]
2535
runs-on: ${{ matrix.os }}
2636
strategy:
2737
fail-fast: false

.github/workflows/format.yml

-11
This file was deleted.

0 commit comments

Comments
 (0)