Disable check_linestrings #51
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: ci | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
- name: Run pre-commit | |
uses: pre-commit/[email protected] | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.8', '3.9', '3.10'] | |
steps: | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- uses: actions/checkout@v2 | |
# Copied from: https://github.com/nschloe/pygmsh/blob/main/.github/workflows/ci.yml | |
# install gmsh from system -- not sure why this is necessary | |
- name: Install gmsh | |
run: | | |
sudo apt-get install -y python3-gmsh | |
- name: Test with tox | |
run: | | |
pip install tox | |
tox -- --cov pandamesh --cov-report xml --cov-report term | |
- uses: codecov/codecov-action@v3 | |
if: ${{ matrix.python-version == '3.9' }} |