-
Notifications
You must be signed in to change notification settings - Fork 9
29 lines (29 loc) · 983 Bytes
/
ci.yaml
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
name: ci
on: [push, pull_request, release]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '^1.22'
- run: go install github.com/mattn/goveralls@latest
- run: |
make test
make
make build.docker
- run: goveralls -coverprofile=profile.cov -service=github
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Push the latest Docker image
run: |
echo ${{ secrets.DOCKERHUB_PASSWORD }} | docker login -u ${{ secrets.DOCKERHUB_USERNAME }} --password-stdin
VERSION=latest make build.push
if: github.ref == 'refs/heads/master'
- name: Push the release Docker image
run: |
echo ${{ secrets.DOCKERHUB_PASSWORD }} | docker login -u ${{ secrets.DOCKERHUB_USERNAME }} --password-stdin
VERSION=$GITHUB_REF_NAME make build.push
if: github.event_name == 'release'