This commit is contained in:
parent
615e732823
commit
1fcca3915a
34
.gitea/workflows/python-lint-test.yml
Normal file
34
.gitea/workflows/python-lint-test.yml
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
# This workflow will install Python dependencies, run tests and lint with a single version of Python
|
||||||
|
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
|
||||||
|
|
||||||
|
name: Python Lint & Test
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ main ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ main ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Install Dependencies
|
||||||
|
run: |
|
||||||
|
apt-get update;
|
||||||
|
apt-get install --yes --no-install-recommends \
|
||||||
|
python3-pip \
|
||||||
|
python3-pytest \
|
||||||
|
python3-pytest-flake8
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
|
||||||
|
- name: Install dependencies for testing
|
||||||
|
run: |
|
||||||
|
if [ -f requirements-test.txt ]; then pip install -r requirements-test.txt; fi
|
||||||
|
- name: Test with pytest
|
||||||
|
run: |
|
||||||
|
pytest --flake8
|
Loading…
Reference in New Issue
Block a user