add danimo ed25519 key #308
This file contains 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, 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 | |
- 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' |