Skip to content

Fix CHANGELOG.md date #43

Fix CHANGELOG.md date

Fix CHANGELOG.md date #43

Workflow file for this run

name: Tests
on:
push:
pull_request:
types: [ opened, reopened, synchronize ]
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.8', '3.9', '3.10' ]
name: pytest ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up CPython ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install -e .[test]
python -m pip install -e .[data]
- name: Run pytest
shell: bash
run: |
PYTHONPATH="$(pwd)" pytest --cov=hypixel --cov-report term