Fix CI test failures by installing Poetry in CI environment #4
This file contains hidden or 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: Tests | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install Fish and Poetry | |
| run: | | |
| sudo apt-add-repository ppa:fish-shell/release-3 | |
| sudo apt update | |
| sudo apt install -y fish python3-pip | |
| pip install poetry | |
| - name: Run tests | |
| run: make test-verbose | |
| - name: Run lint | |
| run: make lint |