forked from cram2/pycram
-
Notifications
You must be signed in to change notification settings - Fork 2
42 lines (40 loc) · 855 Bytes
/
main_ci.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
39
40
41
42
name: CI standalone
defaults:
run:
shell: bash -ieo pipefail {0}
on:
push:
branches:
- test-ci
pull_request:
branches:
- master
- devel
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'info'
type: choice
options:
- info
- warning
- debug
tags:
description: 'Test scenario tags'
required: false
type: boolean
jobs:
build_dependencies:
uses: ./.github/workflows/setup_dependencies.yml
execute_test:
needs: [ build_dependencies ]
runs-on: ubuntu-20.04
steps:
- name: start roscore
run: roslaunch pycram ik_and_description &
- name: Run Tests
run: |
roscd pycram
python3 -m unittest discover test