Add unit tests for allow_exe #774
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Autospec Tests | |
on: [push, pull_request] | |
jobs: | |
test_style: | |
runs-on: ubuntu-latest | |
name: Flake8 | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3.3.0 | |
- name: Run Tests | |
uses: ./.github/actions/clearlinux-latest-action | |
with: | |
testfunc: run_flake8 | |
test_unit: | |
runs-on: ubuntu-latest | |
name: Unit | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3.3.0 | |
- name: Run Tests | |
uses: ./.github/actions/clearlinux-latest-action | |
with: | |
testfunc: run_unittests |