From 7a85d02682c1fe64bc2205765f6978fef4a64e0c Mon Sep 17 00:00:00 2001 From: Juhani Numminen Date: Wed, 7 Jul 2021 16:14:09 +0300 Subject: [PATCH] Add github actions CI --- .github/workflows/ci.yml | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..931f639f --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,40 @@ +name: CI tests at GitHub + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + strategy: + fail-fast: false + + steps: + - uses: actions/checkout@v2 + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: '3.x' + - name: Install dependencies + run: | + python -m pip install --upgrade pip + python -m pip install flake8 flake8-import-order \ + attrs configobj pycotap pysol-cards random2 setuptools six + if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + - 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 + flake8 . --count --exit-zero --statistics + - name: Run unit tests + run: | + python -m unittest -v + - name: Individually import each Python module + run: | + python scripts/gen_individual_importing_tests.py + prove tests/individually-importing/*.py