Skip to content

Commit 88923b3

Browse files
authored
Merge pull request #196 from snabble/actions
Switch to github actions
2 parents 83f21e8 + 2fefcad commit 88923b3

File tree

2 files changed

+25
-21
lines changed

2 files changed

+25
-21
lines changed

.github/actions/build/action.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Build and Test
2+
description: "Build and test it"
3+
4+
inputs:
5+
docker_password:
6+
description: "Password to log into Dockerhub"
7+
required: true
8+
go_build_token:
9+
description: "Token that allows to push to the Google Artifact Registry"
10+
required: true
11+
12+
runs:
13+
using: "composite"
14+
steps:
15+
- name: Clone build-helper
16+
uses: actions/checkout@v4
17+
with:
18+
repository: snabble/build-helper
19+
path: build-helper
20+
token: "${{ inputs.go_build_token }}"
21+
22+
- name: build
23+
uses: ./build-helper/.github/workflows/build-go-library
24+
with:
25+
gh-token: ${{inputs.go_build_token}}

.travis.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

0 commit comments

Comments
 (0)