This repository has been archived by the owner on Jun 27, 2024. It is now read-only.
Bump idna from 3.6 to 3.7 #54
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: Test and lint | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
env: | |
TARGETS: memrise_audio_uploader tests | |
jobs: | |
test-and-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.8 | |
- name: Install Poetry | |
run: pip install poetry | |
- name: Install dependencies | |
run: poetry install | |
- name: Run pylint | |
run: make pylint | |
- name: Run isort | |
run: make isort | |
- name: Run black | |
run: make black | |
- name: Run tests | |
run: make test |