-
Notifications
You must be signed in to change notification settings - Fork 12
43 lines (41 loc) · 1.26 KB
/
bw_test.yml
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
name: bw test
on: [ push, pull_request ]
jobs:
bw_test_dummy_mode:
name: 'bw test (with dummy mode)'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
# https://github.com/bundlewrap/bundlewrap/commit/5751bf40b44b83a92d89ca33065ee829e7f5db56
- name: Install Dependencies
run: pip3 install setuptools -r requirements.txt
working-directory: bundlewrap
- name: Run bw test
run: bw test
working-directory: bundlewrap
env:
BW_VAULT_DUMMY_MODE: '1'
BW_KEEPASS_DUMMY_MODE: '1'
bw_test_ignore:
name: 'bw test -i'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
# https://github.com/bundlewrap/bundlewrap/commit/5751bf40b44b83a92d89ca33065ee829e7f5db56
- name: Install Dependencies
run: pip3 install setuptools -r requirements.txt
working-directory: bundlewrap
- name: Run bw test
run: bw test -i
working-directory: bundlewrap
env:
BW_VAULT_DUMMY_MODE: '1'
BW_KEEPASS_DUMMY_MODE: '1'