Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add: github actions #94

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: apertium-python CI Build

on: [push]

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]

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 pipenv
python3 setup.py install
pipenv install --dev --system
- name: Flake8 checks
run: |
flake8 --verbose apertium
- name: mypy checks
run: |
mypy apertium --strict --any-exprs-report .mypy_coverage --ignore-missing-imports
cat .mypy_coverage/any-exprs.txt
coverage=$(tail -1 .mypy_coverage/any-exprs.txt | grep -Eo '[0-9\.]+%' | sed 's/%$//')
if (( $(echo "$coverage < 95" | bc -l) )); then
exit 1
fi
- name: code coverage and unittest
run: |
coverage run -m unittest --verbose --buffer tests
coverage report --show-missing --fail-under 90 --include 'apertium/*'