You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# This workflow will install Python dependencies, run tests and lint with a single version of Python
|
|
|
|
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
|
|
|
|
|
|
|
|
name: CI - Python-based Testing
|
|
|
|
|
|
|
|
on:
|
|
|
|
# Trigger the workflow on push or pull request,
|
|
|
|
# but only for the master branch
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
python-version: ['3.8','3.10']
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v4
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
|
|
|
|
- name: Upgrade pip
|
|
|
|
run: |
|
|
|
|
pip install --upgrade pip
|
|
|
|
|
|
|
|
- name: Install the package locally
|
|
|
|
run: pip install -r requirements.txt -r requirements-dev.txt
|
|
|
|
|
|
|
|
- name: Test with pytest
|
|
|
|
run: |
|
|
|
|
pytest -W error
|
|
|
|
- name: Test with lit
|
|
|
|
run: |
|
|
|
|
lit -v test/filecheck
|
|
|
|
|
|
|
|
#- name: Execute lit tests
|
|
|
|
# run: |
|
|
|
|
# export PYTHONPATH=$(pwd)
|
|
|
|
# lit -v tests/filecheck/
|