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 b9c8c2f commit fd0c29fCopy full SHA for fd0c29f
.github/workflows/build-and-test.yml .github/workflows/ci.yml.github/workflows/build-and-test.yml renamed to .github/workflows/ci.yml
@@ -1,21 +1,20 @@
1
+name: ci
2
+
3
on:
4
push:
5
branches:
6
- 'master'
7
pull_request:
8
-name: build-and-test
-
9
concurrency:
10
- group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
11
- cancel-in-progress: true
+ group: ${{ github.workflow }}-${{ github.ref }}
+ cancel-in-progress: ${{ github.event_name == 'pull_request' }}
12
13
jobs:
14
check:
15
name: Build and Check
16
runs-on: ubuntu-latest
17
timeout-minutes: 10
18
19
steps:
20
- uses: actions/checkout@v4
21
0 commit comments