Use explicit checkout action and simplified pip commands
Some checks failed
CI / test (push) Failing after 4s
Some checks failed
CI / test (push) Failing after 4s
This commit is contained in:
@@ -10,13 +10,9 @@ jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
run: |
|
||||
ls -la
|
||||
pwd
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
pip install -e . pytest pytest-asyncio
|
||||
- name: Run tests
|
||||
run: |
|
||||
python -m pytest tests/ -v
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Install
|
||||
run: pip install -e . pytest pytest-asyncio
|
||||
- name: Test
|
||||
run: python -m pytest tests/ -v
|
||||
Reference in New Issue
Block a user