fix #75
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: Test | |
on: | |
push: | |
paths-ignore: | |
- "**.md" | |
pull_request: | |
paths-ignore: | |
- "**.md" | |
jobs: | |
testing: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] | |
steps: | |
- name: Checkout Repository And Submodules | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Set Up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Display Python Version | |
run: python -c "import sys; print(sys.version)" | |
shell: bash | |
- name: Install Pydivsufsort And Other Dependencies | |
run: | | |
bash ./build.sh | |
python -m pip install pytest flake8 coverage | |
# -e installs locally, else coverage fails | |
python -m pip install -v -e . | |
shell: bash | |
- name: Run Flake8 | |
run: flake8 . | |
shell: bash | |
- name: Run Unit Tests | |
run: | | |
coverage run -m pytest tests | |
coverage xml | |
shell: bash | |
- name: "Upload coverage to Codecov" | |
uses: codecov/codecov-action@v3 |