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