Use public runners #5
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: main | |
on: push | |
jobs: | |
# scan_fs: | |
# runs-on: ubuntu-latest | |
# container: | |
# image: registry.nextpertise.tools/nextpertise-proxy/aquasec/trivy:0.14.0 | |
# credentials: | |
# username: ${{ secrets.REGISTRY_NEXTPERTISE_TOOLS_ACCOUNT }} | |
# password: ${{ secrets.REGISTRY_NEXTPERTISE_TOOLS_KEY }} | |
# steps: | |
# - name: Checkout | |
# uses: actions/checkout@v4 | |
# | |
# - name: scan fs | |
# run: trivy --light fs --quiet --exit-code 1 . | |
unittest: | |
runs-on: ubuntu-latest | |
container: | |
image: registry.nextpertise.tools/nextpertise/python-poetry:3.8 | |
credentials: | |
username: ${{ secrets.REGISTRY_NEXTPERTISE_TOOLS_ACCOUNT }} | |
password: ${{ secrets.REGISTRY_NEXTPERTISE_TOOLS_KEY }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run unittest | |
run: | | |
poetry install | |
poetry run pytest | |
poetry run pylint src test || exit 0 # Ignore pylint failures as they are not as important as tests |