mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-11-08 16:20:02 +00:00
35 lines
582 B
YAML
35 lines
582 B
YAML
---
|
|
|
|
if: ${{ github.ref != 'refs/heads/stable' }}
|
|
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
|
|
container:
|
|
image: luzifer/gh-arch-env
|
|
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
|
|
|
|
...
|