differentes possibilités d'alignement de la collection dans le raster #792
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: Tracklib build & test | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.8"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | |
- name: Test with pytest | |
run: | | |
mkdir -p ${{ github.workspace }}/data/test | |
mkdir -p ${{ github.workspace }}/data/test/gpx1 | |
mkdir -p ${{ github.workspace }}/data/test/gpx2 | |
mkdir -p ${{ github.workspace }}/data/test/gpx3 | |
chmod 777 -R ${{ github.workspace }}/data/test | |
chmod 777 -R ${{ github.workspace }}/data/test/gpx1 | |
chmod 777 -R ${{ github.workspace }}/data/test/gpx2 | |
chmod 777 -R ${{ github.workspace }}/data/test/gpx3 | |
coverage run -m --source=tracklib/ --omit=tracklib/plot pytest test/ | |
coverage xml | |
- name: Upload coverage reports to Codecov with GitHub Action | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |