mirror of
https://github.com/clearlinux/autospec.git
synced 2026-09-03 20:31:40 +00:00
28 lines
614 B
YAML
28 lines
614 B
YAML
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
|