-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (32 loc) · 1.01 KB
/
dev.yml
File metadata and controls
44 lines (32 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: DEV
on: push
env:
REGISTRY: ghcr.io/${{ github.repository }}
REGISTRY_HOST: ghcr.io
REGISTRY_USERNAME: ${{ github.actor }}
REGISTRY_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
jobs:
analyze:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Docker login
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY_HOST }}
username: ${{ env.REGISTRY_USERNAME }}
password: ${{ env.REGISTRY_PASSWORD }}
- name: Init
run: make init
- name: Lint
run: make lint
- name: Analyze
run: make analyze
- name: Test
run: make test
- name: Package validate
run: make package-validate
- name: Bench
run: make bench
- name: Down
run: make docker-down-clear