Compare commits

6 Commits

Author SHA1 Message Date
96e66f050b Try setting the env
Some checks failed
black
flake8
mypy-pytest
pylint
Lint and test / flake8 (push) Failing after 7s
Lint and test / black (push) Failing after 5s
Lint and test / mypy-pytest (push) Failing after 9s
Lint and test / pylint (push) Failing after 7s
2023-05-20 16:52:40 +02:00
78ae08f387 Print env
Some checks failed
black
flake8
mypy-pytest
pylint
2023-05-20 16:43:44 +02:00
6a54c69dd8 Setup Python
Some checks failed
flake8
mypy-pytest
pylint
black
2023-05-20 15:32:24 +02:00
5ee8d363a5 Fix 'run' commands
Some checks failed
black
flake8
mypy-pytest
pylint
2023-05-20 15:30:49 +02:00
cd5c0e7d79 Fix config format?
Some checks failed
black
flake8
mypy-pytest
pylint
2023-05-20 15:29:26 +02:00
01c5938e56 Switch to Gitea Actions 2023-05-20 15:25:12 +02:00
2 changed files with 69 additions and 35 deletions

69
.gitea/workflows/test.yml Normal file
View 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"]

View File

@ -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