add saal a config #662
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: bw test | |
| on: | |
| push: | |
| paths: ['bundlewrap/**'] | |
| pull_request: | |
| paths: ['bundlewrap/**'] | |
| 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 | |
| - name: Install Dependencies | |
| run: pip3 install -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 | |
| - name: Install Dependencies | |
| run: pip3 install -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' |