aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/quick-test.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/quick-test.yml')
-rw-r--r--.github/workflows/quick-test.yml33
1 files changed, 0 insertions, 33 deletions
diff --git a/.github/workflows/quick-test.yml b/.github/workflows/quick-test.yml
deleted file mode 100644
index d8e14f470..000000000
--- a/.github/workflows/quick-test.yml
+++ /dev/null
@@ -1,33 +0,0 @@
-name: Quick Test
-on: [push, pull_request]
-jobs:
- tests:
- name: Core Test
- if: "!contains(github.event.head_commit.message, 'ci skip all')"
- 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 test requirements
- run: pip install pytest pycryptodomex
- - name: Run tests
- run: ./devscripts/run_tests.sh core
- flake8:
- name: Linter
- if: "!contains(github.event.head_commit.message, 'ci skip all')"
- 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
- - name: Make lazy extractors
- run: python devscripts/make_lazy_extractors.py
- - name: Run flake8
- run: flake8 .