Dev #233
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: ABL-Package-CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
python-version: ['3.7', '3.12'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Cache Python virtual environment | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.venv | |
!~/.venv/*/lib/python*/no-global-site-packages.txt | |
key: ${{ runner.os }}-python-${{ matrix.python-version }}-${{ hashFiles('**/requirements.txt') }} | |
restore-keys: | | |
${{ runner.os }}-python-${{ matrix.python-version }}- | |
- name: Display python version | |
run: python -c "import sys; print(sys.version)" | |
- name: Install SWI-Prolog on Ubuntu | |
if: matrix.os == 'ubuntu-latest' | |
run: sudo apt-get install swi-prolog | |
- name: Install SWI-Prolog on Windows | |
if: matrix.os == 'windows-latest' | |
run: choco install swi-prolog | |
- name: Install SWI-Prolog on MACOS | |
if: matrix.os == 'macos-latest' | |
run: brew install swi-prolog | |
- name: Install package dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pytest pytest-cov | |
- name: Install | |
run: pip install -v -e . | |
- name: Run tests | |
run: | | |
pytest --cov-config=.coveragerc --cov-report=xml --cov=abl ./tests | |
- name: Publish code coverage | |
uses: codecov/codecov-action@v1 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
file: ./coverage.xml |