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.
Roave Backwards Compatibility Check
test.yml
1 parent 185db38 commit 2c393dfCopy full SHA for 2c393df
.github/workflows/test.yml
@@ -7,6 +7,23 @@ on:
7
branches: [main]
8
9
jobs:
10
+ roave-backwards-compatibility-check:
11
+ name: Roave Backwards Compatibility Check
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ with:
16
+ fetch-depth: 0
17
+ - name: Set safe directory
18
+ run: git config --global --add safe.directory /github/workspace
19
+ - name: "Check for BC breaks"
20
+ run: |
21
+ git config --global --add safe.directory "${GITHUB_WORKSPACE}"
22
+
23
+ docker run --rm \
24
+ -v "${GITHUB_WORKSPACE}":/github/workspace \
25
+ -w /github/workspace \
26
+ nyholm/roave-bc-check-ga
27
test:
28
runs-on: ubuntu-latest
29
0 commit comments