We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de55275 commit 505c57bCopy full SHA for 505c57b
.github/workflows/ci.yml
@@ -47,12 +47,20 @@ jobs:
47
uses: actions/setup-python@v5
48
with:
49
python-version: '3.12'
50
- - name: Install dependencies
+ - name: Install Python Dependencies
51
run: |
52
python -m pip install --upgrade pip
53
pip install pytest==8.1.2 GitPython==3.1.43 testpath==0.6.0
54
- - name: Unit test
+ - name: Setup Bats and bats libs
55
+ id: setup-bats
56
+ uses: bats-core/bats-action@3.0.0
57
+ - name: Test with Pytest
58
run: make test
59
+ - name: Test with Bats
60
+ env:
61
+ BATS_LIB_PATH: ${{ steps.setup-bats.outputs.lib-path }}
62
+ TERM: xterm
63
+ run: bats ./tests
64
65
build:
66
strategy:
0 commit comments