2024-04-03 22:15:26 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
if: ${{ github.ref != 'refs/heads/stable' }}
|
|
|
|
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: bash
|
|
|
|
|
|
|
|
container:
|
2024-04-13 11:31:41 +00:00
|
|
|
image: luzifer/gh-arch-env
|
2024-04-03 22:15:26 +00:00
|
|
|
env:
|
|
|
|
CGO_ENABLED: 0
|
|
|
|
GOPATH: /go
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
show-progress: false
|
|
|
|
|
|
|
|
- name: Marking workdir safe
|
|
|
|
run: |
|
|
|
|
git config --global --add safe.directory /__w/twitch-bot/twitch-bot
|
|
|
|
|
|
|
|
- name: Lint and test code
|
|
|
|
run: make lint test frontend_lint
|
|
|
|
|
|
|
|
- name: Build release (quick local for compile)
|
|
|
|
run: make build_prod
|
|
|
|
|
|
|
|
- name: Execute Trivy scan
|
|
|
|
run: make trivy
|
|
|
|
|
|
|
|
...
|