-
Notifications
You must be signed in to change notification settings - Fork 12
38 lines (31 loc) · 914 Bytes
/
qa.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
##
## =====================================================================================
## C O P Y R I G H T
## -------------------------------------------------------------------------------------
## Copyright (c) 2023 by Robert Bosch GmbH. All rights reserved.
##
## Author(s):
## - Markus Braun, :em engineering methods AG (contracted by Robert Bosch GmbH)
## =====================================================================================
##
name: QA
on:
workflow_dispatch:
env:
python-version: 3.9
jobs:
qa:
runs-on: ubuntu-latest
steps:
- name: "init: Checkout Code"
uses: actions/checkout@v4
with:
submodules: false
fetch-depth: 0
- name: "init: Ensure Python Environment"
uses: ./.github/actions/init
with:
python-version: 3.9
- name: "test: Run Tests"
run: |
poetry run precommit run --all-files