More CI test fixes

This commit is contained in:
Darren Eberly
2022-08-11 02:11:31 -04:00
parent daf522b85d
commit 6e335a7fc3
5 changed files with 21 additions and 59 deletions

View File

@@ -1,38 +0,0 @@
name: Lint
on:
push:
branches: [development]
pull_request:
branches: [development]
workflow_dispatch:
jobs:
build:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python 3.x
uses: actions/setup-python@v4
with:
python-version: '3.x'
architecture: 'x64'
- name: dependencies
run: |
python -m pip install -U pip wheel setuptools
- name: wheel
run: |
python -m pip install -e .[tests]
- name: flake8
run: |
flake8 pytiled_parser
- name: mypy
run: |
mypy pytiled_parser
- name: black
run: |
black pytiled_parser --check

View File

@@ -25,14 +25,25 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.architecture }}
architecture: ${{ matrix-python-version }}
- name: dependencies
run: |
python -m pip install -U pip wheel setuptools
- name: wheel
run: |
python -m pip install -e .[tests]
- name: pytest
- name: flake8
run: |
pytest --cov=pytiled_parser --cov-report=xml --cov-report=html
flake8 pytiled_parser
- name: mypy
if: success() || failure()
run: |
mypy pytiled_parser
- name: black
if: success() || failure()
run: |
black pytiled_parser --check
- name: pytest
if: success() || failure()
run: |
pytest --cov=pytiled_parser --cov-report=xml --cov-report=html