simplify #31
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: "Audit" | |
on: # yamllint disable-line rule:truthy | |
push: | |
pull_request: | |
schedule: | |
- cron: "0 0 * * 1" | |
jobs: | |
Audit: | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: "actions/checkout@v4" | |
- run: "sudo apt-get install -y make" | |
- run: "pip3 install -r requirements-dev.txt" | |
# | |
# Debian-based Ubuntu GitHub Actions base OS is | |
# expected to present unresolvable CVE's. | |
# Disabling (GitHub Actions Hosted) runner step for now. | |
# Care when merging pull requests. | |
# In any case, all CI/CD jobs can be peformed locally. | |
# | |
# - run: "make audit" |