Skip to content

clean added to makefile, small refactoring (#11) #30

clean added to makefile, small refactoring (#11)

clean added to makefile, small refactoring (#11) #30

Workflow file for this run

name: aoc-2023-ci
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Run black
run: |
make black
- name: Run flake8
run: |
make flake
- name: Test with pytest
run: |
make tests