We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d67ace3 commit 0924861Copy full SHA for 0924861
1 file changed
.github/workflows/ci.yml
@@ -21,14 +21,14 @@ jobs:
21
uses: actions/setup-python@v4
22
with:
23
python-version: ${{ matrix.python-version }}
24
- - name: Install dependencies
25
- run: |
26
- python -m pip install --upgrade hatch
27
- name: Run Vaultwarden server
28
run: |
29
temp_dir=$(mktemp -d)
30
cp ${{ github.workspace }}/tests/fixtures/server/* $temp_dir
31
docker run -d --name vaultwarden -v $temp_dir:/data --env I_REALLY_WANT_VOLATILE_STORAGE=true --env ADMIN_TOKEN=admin --restart unless-stopped -p 80:80 vaultwarden/server:${{ matrix.vaultwarden-version }}
+ - name: Install dependencies
+ run: |
+ python -m pip install --upgrade hatch
32
- name: Run tests
33
34
hatch run +py=${{ matrix.py || matrix.python-version }} test:with-coverage
0 commit comments