-
Notifications
You must be signed in to change notification settings - Fork 2
83 lines (69 loc) · 2.26 KB
/
tests.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
name: Tests
on:
push:
branches:
- master
pull_request:
jobs:
snapshots:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install scip cli
run: |
bash -c 'curl -L "https://github.com/sourcegraph/scip/releases/download/v0.3.0/scip-linux-amd64.tar.gz"' | tar xzf - scip
./scip --version
- uses: dart-lang/setup-dart@v1
with:
# use a fixed version number so changes to 'stable', dont break snapshot diffs (language version is used in the scip symbol)
sdk: 2.18.7
- name: pub get scip-dart package
run: dart pub get
- name: pub get basic-project directory
run: dart pub get
working-directory: ./snapshots/input/basic-project
- name: pub get relationships-project directory
run: dart pub get
working-directory: ./snapshots/input/relationships-project
- name: Snapshots Diff Check
run: |
dart run scip_dart ./snapshots/input/basic-project
./scip snapshot --to ./snapshots/output/basic-project
dart run scip_dart --index-relationships ./snapshots/input/relationships-project
./scip snapshot --to ./snapshots/output/relationships-project
if [[ -z "$(git status --porcelain ./snapshots/output)" ]];
then
echo "No changes to snapshot files"
else
echo
echo "Snapshot diff detected differences, run 'make run snap' to re-generate snapshots"
git status --short ./snapshots/output
echo
exit 1
fi
consumer:
runs-on: ubuntu-latest
strategy:
matrix:
repo: [
"Workiva/over_react",
"Workiva/w_module",
"rrousselGit/provider",
"dart-lang/args",
]
steps:
# Setup scip-dart
- uses: actions/checkout@v3
- uses: dart-lang/setup-dart@v1
with:
sdk: 2.18.7
- run: dart pub get
# Setup repo to run on
- uses: actions/checkout@v3
with:
repo: ${{ matrix.repo }}
path: ${{ matrix.repo }}
- run: dart pub get
working-directory: ${{ matrix.repo }}
- run: |
dart run scip_dart ./${{ matrix.repo }} || exit 1