Compare commits
6 Commits
main
...
gitea-acti
Author | SHA1 | Date | |
---|---|---|---|
96e66f050b | |||
78ae08f387 | |||
6a54c69dd8 | |||
5ee8d363a5 | |||
cd5c0e7d79 | |||
01c5938e56 |
69
.gitea/workflows/test.yml
Normal file
69
.gitea/workflows/test.yml
Normal file
@ -0,0 +1,69 @@
|
||||
name: Lint and test
|
||||
run-name:
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
flake8:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Set env
|
||||
run: |
|
||||
echo "AGENT_TOOLDIR=$(realpath .)/../TOOLDIR" >> $GITHUB_ENV; mkdir -p $(realpath .)/../TOOLDIR
|
||||
- name: Print env
|
||||
run: env
|
||||
- name: Setup Python
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: "3.9"
|
||||
- name: Check out repository code
|
||||
uses: actions/checkout@v3
|
||||
- name: Install flake8
|
||||
run: pip3 install flake8
|
||||
- name: Run flake8
|
||||
run: flake8 glowtables/
|
||||
|
||||
pylint:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Setup Python
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: "3.9"
|
||||
- name: Check out repository code
|
||||
uses: actions/checkout@v3
|
||||
- name: Install pylint
|
||||
run: pip3 install pylint
|
||||
- name: Run pylint
|
||||
run: pylint glowtables/
|
||||
|
||||
black:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Setup Python
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: "3.9"
|
||||
- name: Check out repository code
|
||||
uses: actions/checkout@v3
|
||||
- name: Install black
|
||||
run: pip3 install black==22.8.0
|
||||
- name: Run black
|
||||
run: black --check glowtables/
|
||||
|
||||
mypy-pytest:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check out repository code
|
||||
uses: actions/checkout@v3
|
||||
- name: Setup Python
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: ${{ matrix.python }}
|
||||
- name: Install
|
||||
run: pip3 install mypy .[testing]
|
||||
- name: Run mypy
|
||||
run: make mypy
|
||||
- name: Run pytest
|
||||
run: make pytest
|
||||
matrix:
|
||||
python: ["3.9", "3.11"]
|
@ -1,35 +0,0 @@
|
||||
pipeline:
|
||||
flake8:
|
||||
group: lint
|
||||
image: python:3.9
|
||||
commands:
|
||||
- pip3 install flake8
|
||||
- flake8 glowtables/
|
||||
pylint:
|
||||
group: lint
|
||||
image: cytopia/pylint
|
||||
commands:
|
||||
- pylint glowtables/
|
||||
|
||||
black:
|
||||
group: lint
|
||||
image: pyfound/black:22.8.0
|
||||
commands:
|
||||
- black --check glowtables/
|
||||
|
||||
test-py3.9:
|
||||
group: test
|
||||
image: python:3.9
|
||||
commands: &test_commands
|
||||
- apt-get update
|
||||
- pip3 install mypy .[testing]
|
||||
- make mypy
|
||||
- make pytest
|
||||
test-py3.10:
|
||||
group: test
|
||||
image: python:3.10
|
||||
commands: *test_commands
|
||||
test-py3.11:
|
||||
group: test
|
||||
image: python:3.11
|
||||
commands: *test_commands
|
Reference in New Issue
Block a user