We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ceb97a commit 6d6213aCopy full SHA for 6d6213a
1 file changed
.github/workflows/main.yaml
@@ -0,0 +1,25 @@
1
+name: Test ADM Compliance tests
2
+
3
+on:
4
+ push:
5
+ branches: ["main"]
6
+ pull_request:
7
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