-
Notifications
You must be signed in to change notification settings - Fork 2
46 lines (37 loc) · 1.26 KB
/
main.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
38
39
40
41
42
43
44
45
46
name: Test IM-Client
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out the codebase.
uses: actions/checkout@v4
- name: Set up Python 3.
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: python -m pip install coverage mock radl netaddr requests pycodestyle
- name: Prepare auth.dat
run: |
cat <<EOT >> oidc-token
#!/bin/sh
echo "token"
EOT
chmod a+x oidc-token
sed -i '/oidc-token/c\type = InfrastructureManager; bearer_token_command = '${GITHUB_WORKSPACE}'/oidc-token OIDC_ACCOUNT' auth.dat
- name: Check code style
run: pycodestyle --max-line-length=120 --ignore=E402,W605 . --exclude=doc
- name: Unit tests
run: python -m coverage run --source=. -m unittest discover -s test/unit -p '*.py'
- name: Generate XML coverage report
run: python -m coverage xml
- name: Report coverage
uses: codacy/codacy-coverage-reporter-action@v1
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: coverage.xml