-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (36 loc) · 967 Bytes
/
tests.yaml
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
name: Execute BOA tests
on:
push:
paths-ignore:
- '**.md'
- 'docs/**'
- 'media/**'
- 'boa/docs/**'
pull_request:
paths-ignore:
- '**.md'
- 'docs/**'
- 'media/**'
- 'boa/docs/**'
jobs:
testing:
name: Install and testing
runs-on: ubuntu-20.04
timeout-minutes: 60
steps:
- name: Set up Python3
uses: actions/setup-python@v2
with:
python-version: '3.8.5'
architecture: 'x64'
- uses: actions/checkout@v2
- name: Install requirements
run: |
sudo apt install --assume-yes firejail
- name: Install python requirements
run: |
pip3 install -r requirements.txt
pip3 install -r requirements-static-analyzer.txt
pip3 install -r requirements-dynamic-analyzer.txt
- name: Run tests
run: ./tests/BOA/run_tests.sh