Skip to content

Commit 8360405

Browse files
authored
Update action workflow files (#71)
1 parent a8535d9 commit 8360405

3 files changed

Lines changed: 11 additions & 12 deletions

File tree

.github/workflows/CI.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
name: CI
22
on:
33
push:
4-
branches:
5-
- main
4+
branches: [main]
65
tags: '*'
76
pull_request:
8-
branches:
9-
- main
7+
branches: [main]
108
concurrency:
119
# Skip intermediate builds: always.
1210
# Cancel intermediate builds: only if it is a pull request build.
@@ -56,5 +54,9 @@ jobs:
5654
version: '1'
5755
- uses: julia-actions/cache@v3
5856
- uses: julia-actions/julia-buildpkg@v1
59-
- run: julia --color=yes -e 'using Pkg; Pkg.add("Aqua")'
60-
- run: julia --color=yes --project=@. -e 'using Aqua, WCS; Aqua.test_all(WCS, ambiguities=false)'
57+
- name: Install Aqua
58+
run: using Pkg; Pkg.add("Aqua")
59+
shell: julia --color=yes {0}
60+
- name: Run Aqua tests
61+
run: using Aqua, WCS; Aqua.test_all(WCS, ambiguities=false)
62+
shell: julia --color=yes --project=@. {0}

.github/workflows/Documentation.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
name: Documentation
22
on:
33
push:
4-
branches:
5-
- main
4+
branches: [main]
65
tags: '*'
76
pull_request:
8-
branches:
9-
- main
7+
branches: [main]
108
concurrency:
119
# Skip intermediate builds: always.
1210
# Cancel intermediate builds: only if it is a pull request build.

.github/workflows/TagBot.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
name: TagBot
22
on:
33
issue_comment:
4-
types:
5-
- created
4+
types: [created]
65
workflow_dispatch:
76
jobs:
87
TagBot:

0 commit comments

Comments
 (0)