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