Skip to content

chore: update urls

chore: update urls #25

Workflow file for this run

name: CI
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install packages
working-directory: ./currently_listening_py/
run: |
python -m pip install --upgrade pip
pip install '.[testing]'
pip install -U imgkit
- name: Run mypy
working-directory: ./currently_listening_py/
run: |
mypy --install-types --non-interactive ./currently_listening_py/
- name: Run flake8
working-directory: ./currently_listening_py/
run: |
flake8 ./currently_listening_py/