-
Notifications
You must be signed in to change notification settings - Fork 3
38 lines (38 loc) · 1.07 KB
/
main.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
name: 'main'
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: 'Checkout sources'
uses: actions/checkout@v3
- name: 'Set up Python'
uses: actions/setup-python@v4
with:
python-version: 3.12
- name: 'Set up Poetry'
uses: snok/install-poetry@v1
- name: 'Install dependencies'
run: poetry install --no-interaction --no-root
- name: 'Run unit-tests with coverage'
run: poetry run pytest --cov --cov-report=xml
- name: 'Run codelimit'
run: |
poetry run codelimit scan .
- name: 'Build and run codelimit binary'
run: |
poetry run pyinstaller -n codelimit -F codelimit/__main__.py
./dist/codelimit scan .
- name: 'Run Code Limit action'
uses: getcodelimit/codelimit-action@main
with:
token: ${{ secrets.GITHUB_TOKEN }}
upload: true
- name: 'Upload coverage reports to Codecov'
uses: codecov/codecov-action@v3