Skip to content

Commit 86239fc

Browse files
committed
update actions
1 parent a3fda75 commit 86239fc

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed
Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
name: format-check
1+
name: FormatCheck
22

33
on:
44
push:
55
branches:
6+
- 'main'
67
- 'master'
78
- 'release-'
89
tags: '*'
@@ -13,15 +14,15 @@ jobs:
1314
runs-on: ${{ matrix.os }}
1415
strategy:
1516
matrix:
16-
julia-version: [1]
17+
julia-version: [1.3.0]
1718
julia-arch: [x86]
1819
os: [ubuntu-latest]
1920
steps:
2021
- uses: julia-actions/setup-julia@latest
2122
with:
2223
version: ${{ matrix.julia-version }}
2324

24-
- uses: actions/checkout@v1
25+
- uses: actions/checkout@v4
2526
- name: Install JuliaFormatter and format
2627
# This will use the latest version by default but you can set the version like so:
2728
#
@@ -39,4 +40,4 @@ jobs:
3940
@error "Some files have not been formatted !!!"
4041
write(stdout, out)
4142
exit(1)
42-
end'
43+
end'

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
name: CI
2+
23
on:
34
workflow_dispatch:
45
push:
56
branches:
6-
- master
7+
- 'main'
8+
- 'master'
9+
- 'release-'
710
tags: '*'
811
pull_request:
912

0 commit comments

Comments
 (0)