Skip to content

update scripts

update scripts #71

Workflow file for this run

name: waterbalans
on:
push:
branches:
- master
- dev
pull_request:
branches:
- master
- dev
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[ci]
- name: ruff-lint
uses: chartboost/ruff-action@v1
# - name: ruff-format
# uses: chartboost/ruff-action@v1
# with:
# args: "format --check"
- name: Run pytest
run: |
pytest
- name: Run codacy-coverage-reporter
uses: codacy/codacy-coverage-reporter-action@master
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: coverage.xml