Dev beginning reading and writing opk file #3
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: unitary_test | ||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: write | ||
steps: | ||
- name: Checkout branch | ||
uses: actions/checkout@v4 | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install pytest pytest-shutil | ||
- name: Run tests with pytest | ||
with: | ||
environment-file: environment.yml | ||
run: python3 -m pytest -s ./test -v | ||
Check failure on line 27 in .github/workflows/test.yml GitHub Actions / unitary_testInvalid workflow file
|