-
Notifications
You must be signed in to change notification settings - Fork 12
71 lines (56 loc) · 1.44 KB
/
ci.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
66
67
68
69
70
71
name: CI
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Set up Go 1.16
uses: actions/setup-go@v2
with:
go-version: 1.16
- name: Build linux
run: go build -o polyglot main.go
- uses: actions/upload-artifact@master
name: Generating artifact
with:
name: polyglot-linux64
path: ./polyglot
tests:
needs: build
name: Automated tests
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Set up Go 1.16
uses: actions/setup-go@v2
with:
go-version: 1.16
- name: Run tests
run: go test ./cmd ./source ./language ./repository -v
- name: Run polyglot
run: go run main.go --username=filhodanuvem --log=info
packaging:
needs: tests
name: packaging
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- uses: docker/login-action@v1
name: Docker login
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Docker push registry
run: ./scripts/build.sh