Skip to content
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

Bump idna from 3.6 to 3.7

Bump idna from 3.6 to 3.7 #54

Workflow file for this run

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