Skip to content

fix: leaderboard ids #35

fix: leaderboard ids

fix: leaderboard ids #35

Workflow file for this run

name: Lint and Tests
on:
pull_request:
branches:
- 'master'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
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: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Lint
run: |
poetry run python -m flake8 --config=.flake8
- name: Tests
run: |
python -m unittest