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 40b349d commit 3eaeae8Copy full SHA for 3eaeae8
.github/workflows/redcode-ci.yml
@@ -1,10 +1,16 @@
1
on:
2
push:
3
+ branches:
4
+ - master
5
+ - develop
6
paths:
- - "redcode/**"
7
+ - redcode/**
8
pull_request:
9
10
11
12
13
14
15
defaults:
16
run:
@@ -14,7 +20,10 @@ jobs:
20
build:
21
strategy:
22
matrix:
17
- os: [macos-latest, ubuntu-latest, windows-latest]
23
+ os:
24
+ - macos-latest
25
+ - ubuntu-latest
26
+ - windows-latest
18
27
runs-on: ${{ matrix.os }}
19
28
steps:
29
- name: Checkout branch
@@ -28,4 +37,4 @@ jobs:
37
- name: Build extension
38
run: npm run build
30
39
- name: Verify the build did not modify any files
31
- run: git diff-index HEAD -- .
40
+ run: git diff --exit-code HEAD -- .
0 commit comments