refactor(ci): switch from docker to local gha runner tests #147
Workflow file for this run
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: ci | |
on: pull_request | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install pdftotext | |
run: | | |
sudo apt-get update | |
sudo apt-get -y install build-essential libpoppler-cpp-dev pkg-config | |
- name: Setup Python & Poetry | |
uses: ./.github/actions/setup-python-poetry | |
with: | |
python-version: "3.11" | |
poetry-version: "1.6.1" | |
- name: Run CI | |
run: poetry run task format && poetry run task lint && poetry run task mypy |