Skip to content

⬆️ Bump black from 22.1.0 to 23.12.0 #78

⬆️ Bump black from 22.1.0 to 23.12.0

⬆️ Bump black from 22.1.0 to 23.12.0 #78

Workflow file for this run

name: Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Bootstrap poetry
shell: bash
run: curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python - -y
- name: Update PATH
shell: bash
run: echo "$HOME/.poetry/bin" >> $GITHUB_PATH
- name: Install dependencies
run: poetry install
- name: Test with pytest
run: poetry run pytest --cov=tft_loaded_dice --cov-fail-under=80 --cov-report xml