mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
38 lines
983 B
YAML
38 lines
983 B
YAML
# For more information see: https://docs.github.com/en/actions/guides/building-and-testing-python
|
|
|
|
name: Build and test
|
|
|
|
on:
|
|
push:
|
|
branches: '**'
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
python-version: [2.7, 3.5, 3.7, 3.9, pypy3]
|
|
# don't cancel every other job if one fails
|
|
fail-fast: false
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install pytest wheel
|
|
pip install -e .
|
|
- name: Set up pokedex
|
|
run: pokedex setup -v
|
|
- name: Test with pytest
|
|
run: pytest
|
|
- name: Dump database and check for differences
|
|
run: |
|
|
pokedex dump
|
|
git --no-pager diff --exit-code pokedex/data/csv/
|