Skip to content

Commit

Permalink
Fix based on PWD
Browse files Browse the repository at this point in the history
  • Loading branch information
srilman committed Jun 26, 2024
1 parent d2db6b5 commit b037e1b
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/test_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,17 @@ jobs:
steps:
# Setup & Install Dependencies
- uses: actions/checkout@v4
- run: pwd
- uses: actions/setup-go@v4
with:
go-version-file: denali/go.mod
cache-dependency-path: denali/go.sum
go-version-file: go.mod
cache-dependency-path: go.sum
- uses: actions/setup-python@v5
with:
python-version: 3.11
cache: 'pip'
- run: pip install -r denali/tests/requirements.txt
- run: pip install -r tests/requirements.txt
name: Install Python Deps

# Run Python Tests
- run: pytest denali/tests
name: Run Python Tests
- run: pytest tests
name: Run Tests

0 comments on commit b037e1b

Please sign in to comment.