Skip to content

Commit 2c393df

Browse files
author
david_smith
committed
Add Roave Backwards Compatibility Check to test.yml
1 parent 185db38 commit 2c393df

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/test.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,23 @@ on:
77
branches: [main]
88

99
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
1027
test:
1128
runs-on: ubuntu-latest
1229

0 commit comments

Comments
 (0)