We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9149a6 commit bfcf5b5Copy full SHA for bfcf5b5
.github/workflows/validate.yml
@@ -0,0 +1,26 @@
1
+name: Public config validation
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
7
+concurrency:
8
+ group: ${{ github.workflow }}-${{ github.ref }}
9
+ cancel-in-progress: ${{ github.ref != 'refs/heads/main' && github.ref != 'refs/heads/develop' }}
10
11
+jobs:
12
+ validate:
13
+ name: Validate
14
+ runs-on: ubuntu-latest
15
16
+ steps:
17
+ - name: Checkout code
18
+ uses: actions/checkout@v4
19
20
+ - name: Set up Ruby
21
+ uses: ruby/setup-ruby@v1
22
+ with:
23
+ ruby-version: "3.3"
24
25
+ - name: Validate
26
+ run: rake validate
.semaphore/semaphore.yml
0 commit comments