Skip to content

test github actions

test github actions #2

Workflow file for this run

---
name: "Audit"
on: # yamllint disable-line rule:truthy
push:
pull_request:
schedule:
- cron: "0 0 * * 1"
jobs:
Audit:
runs-on: "ubuntu-latest"
env:
GOHOME: "/home/runner/go"
steps:
- run: "echo \"${PATH}:${GOHOME}/bin\" >> $GITHUB_PATH"
- uses: "actions/checkout@v4"
- run: "sudo apt-add-repository ppa:longsleep/golang-backports"
- run: "sudo apt-get update"
- run: "sudo apt-get install -y cargo golang-1.21 make npm"
- run: "make -f install.mk"
#
# Debian-based Ubuntu GitHub Actions base OS is
# expected to present unresolvable CVE's.
# Disabling (GitHub Actions Hosted) `safety` runner step for now.
# Care when merging pull requests.
# In any case, all CI/CD jobs can be peformed locally.
#
- run: "make snyk"