-
Notifications
You must be signed in to change notification settings - Fork 29
65 lines (60 loc) · 1.51 KB
/
go.yml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
name: Go
on:
push:
branches: [ main ]
jobs:
vendoring:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v5
with:
go-version: '>=1.22'
- uses: actions/checkout@v4
- run: |
go mod tidy
go mod vendor
go mod verify
bash ./hack/tree_status.sh
golangci-lint:
runs-on: ubuntu-latest
container:
image: fedora:latest
steps:
- uses: actions/setup-go@v5
with:
go-version: '1.22'
- uses: actions/checkout@v4
- run: |
bash hack/install_dep.sh
make .install.golangci-lint
make lint
unit_test:
runs-on: ubuntu-latest
container:
image: fedora:latest
steps:
- uses: actions/checkout@v4
- run: |
# Preparing and running unit tests #
dnf -y install git-core golang glibc-static git-core wget gcc make
bash ./hack/install_dep.sh
export GOBIN=$(pwd)/bin/
make .install.ginkgo
make test-unit
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
with:
file: .coverage/coverprofile
token: ${{ secrets.CODECOV_TOKEN }}
name: codecov-umbrella
slug: navidys/podman-tui
fail_ci_if_error: true
build_binaries:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v5
with:
go-version: '>=1.22'
- uses: actions/checkout@v4
- run: |
make all