Skip to content

Commit

Permalink
ghactions: add build package
Browse files Browse the repository at this point in the history
  • Loading branch information
Radoslav Bodó committed Jun 13, 2024
1 parent ad67879 commit 95b11b8
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/code_quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,13 @@ jobs:
venv/bin/pip install -r requirements-dev.lock
- run: . venv/bin/activate && make coverage
- run: . venv/bin/activate && make lint

build_package:
needs: [code_quality]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- run: sudo apt-get update
- run: sudo apt-get install -y build-essential devscripts
- run: make build-deb

0 comments on commit 95b11b8

Please sign in to comment.