Skip to content

Tests

Tests #184

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ main ]
schedule:
- cron: "0 0 * * 0"
workflow_dispatch:
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: test
run: make test
- name: cve scan the Docker image
run: |
curl -sfL https://raw.githubusercontent.com/aquasecurity/trivy/main/contrib/install.sh | sh -s -- -b /usr/local/bin
make cve-scan