-
Notifications
You must be signed in to change notification settings - Fork 6
34 lines (31 loc) · 970 Bytes
/
ci.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
name: CI
on: [ pull_request ]
jobs:
integration-tests-apply-fixes:
strategy:
matrix:
os: [ ubuntu-22.04, macos-12 ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/prepare_buildozer
with:
version: '6.4.0'
- name: Integration tests - Applying fixes
run: |
buildozer --version
python test/apply_fixes/execute_tests.py -t unused_dependency/remove_unused_public_dep -v
integration-tests-apply-fixes-windows:
strategy:
matrix:
os: [ windows-2022 ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/prepare_buildozer
with:
version: '6.4.0'
- name: Integration tests - Applying fixes
run: |
& D:\bin\buildozer.exe --version
python test/apply_fixes/execute_tests.py -t unused_dependency/remove_unused_public_dep -v