Skip to content

Commit 6d6213a

Browse files
committed
add test
1 parent 3ceb97a commit 6d6213a

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

.github/workflows/main.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Test ADM Compliance tests
2+
3+
on:
4+
push:
5+
branches: ["main"]
6+
pull_request:
7+
branches: ["main"]
8+
9+
jobs:
10+
unit-tests:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Check out the codebase.
14+
uses: actions/checkout@v4
15+
16+
- name: Set up Python 3.
17+
uses: actions/setup-python@v5
18+
with:
19+
python-version: '3.12'
20+
21+
- name: Install dependencies
22+
run: python -m pip install -r requirements.txt
23+
24+
- name: Dry run tests
25+
run: robot --dry-run -V env-template.yaml -d results tests

0 commit comments

Comments
 (0)