Skip to content

Update train.py

Update train.py #27

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [main]
pull_request:
branches: [main]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
os: [ubuntu-latest]
steps:
- name: Install dependencies (GDAL)
run: |
sudo apt install libgdal-dev gdal-bin
gdal-config --version
shell: bash
- uses: actions/checkout@v2
- name: Install Poetry
run: |
pip3 install poetry
shell: bash
- name: Install dependencies
run: |
poetry install
- name: Run tests
run: |
poetry run pytest
- name: "Upload coverage to Codecov"
uses: codecov/codecov-action@v2
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos