2021-01-23 09:30:48 +01:00
|
|
|
name: Quick Test
|
2021-01-16 19:54:52 +01:00
|
|
|
on: [push, pull_request]
|
2021-01-07 21:46:48 +01:00
|
|
|
jobs:
|
|
|
|
tests:
|
2021-02-04 23:53:04 +01:00
|
|
|
name: Core Test
|
2021-01-23 09:30:48 +01:00
|
|
|
if: "!contains(github.event.head_commit.message, 'ci skip all')"
|
2021-01-07 21:46:48 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-08-08 21:24:30 +02:00
|
|
|
- uses: actions/checkout@v3
|
2021-01-23 09:30:48 +01:00
|
|
|
- name: Set up Python
|
2022-08-08 21:24:30 +02:00
|
|
|
uses: actions/setup-python@v4
|
2021-01-07 21:46:48 +01:00
|
|
|
with:
|
|
|
|
python-version: 3.9
|
2021-07-21 22:32:49 +02:00
|
|
|
- name: Install test requirements
|
2021-10-05 19:37:58 +02:00
|
|
|
run: pip install pytest pycryptodomex
|
2021-01-07 21:46:48 +01:00
|
|
|
- name: Run tests
|
2021-07-23 16:48:15 +02:00
|
|
|
run: ./devscripts/run_tests.sh core
|
2021-01-07 21:46:48 +01:00
|
|
|
flake8:
|
|
|
|
name: Linter
|
2021-01-23 09:30:48 +01:00
|
|
|
if: "!contains(github.event.head_commit.message, 'ci skip all')"
|
2021-01-07 21:46:48 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-08-08 21:24:30 +02:00
|
|
|
- uses: actions/checkout@v3
|
2021-01-07 21:46:48 +01:00
|
|
|
- name: Set up Python
|
2022-08-08 21:24:30 +02:00
|
|
|
uses: actions/setup-python@v4
|
2021-01-07 21:46:48 +01:00
|
|
|
with:
|
|
|
|
python-version: 3.9
|
|
|
|
- name: Install flake8
|
|
|
|
run: pip install flake8
|
2021-08-22 21:19:23 +02:00
|
|
|
- name: Make lazy extractors
|
2021-10-22 22:37:20 +02:00
|
|
|
run: python devscripts/make_lazy_extractors.py
|
2021-01-07 21:46:48 +01:00
|
|
|
- name: Run flake8
|
2021-07-23 16:48:15 +02:00
|
|
|
run: flake8 .
|