Merge pull request #62 from bundestag/upgrade-requests #114
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: bundestag gesetze tool test CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
############################################################################## | |
# JOB: Test ################################################################## | |
############################################################################## | |
test: | |
name: test | |
runs-on: ubuntu-latest | |
#needs: [nothing] | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11"] | |
steps: | |
########################################################################## | |
# CHECKOUT CODE ########################################################## | |
########################################################################## | |
- uses: actions/checkout@v2 | |
########################################################################## | |
# SETUP SYSTEM ########################################################### | |
########################################################################## | |
- name: Install system dependencies | |
run: sudo apt-get install libxml2-utils libxml2-dev libxslt1-dev -y | |
########################################################################## | |
# SETUP PYTHON ########################################################### | |
########################################################################## | |
- 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 flake8 pytest | |
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | |
########################################################################## | |
# LINT ################################################################### | |
########################################################################## | |
- name: Lint with flake8 | |
run: | | |
# stop the build if there are Python syntax errors or undefined names | |
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics | |
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide | |
flake8 . --count --exit-zero --max-line-length=127 --statistics | |
########################################################################## | |
# TEST ################################################################### | |
########################################################################## | |
#- name: Test with pytest | |
# run: | | |
# pytest |