Skip to content

Add attribution field to challenge.yml spec #91

Add attribution field to challenge.yml spec

Add attribution field to challenge.yml spec #91

Workflow file for this run

---
name: Testing
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
name: Testing
steps:
- uses: actions/checkout@v3
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install dependencies
run: |
pip install poetry
poetry install
- name: Test
run: poetry run make test