Skip to content

Commit 354dc11

Browse files
author
Simon Prochazka
committed
chore(ci): migrate to github actions
1 parent 93098de commit 354dc11

File tree

5 files changed

+50
-64
lines changed

5 files changed

+50
-64
lines changed

.drone.yml

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

.github/workflows/linters.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Linters
2+
3+
on: [pull_request]
4+
5+
jobs:
6+
validate-commits:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Check out code into the Go module directory
10+
uses: actions/checkout@v1
11+
- name: Commitsar check
12+
uses: docker://outillage/commitsar

.github/workflows/release.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
tags:
6+
- "v*"
7+
8+
jobs:
9+
release:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Check out code into the Go module directory
13+
uses: actions/checkout@v1
14+
- name: Release Notary
15+
uses: docker://outillage/release-notary
16+
env:
17+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/test.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Test
2+
3+
on: [pull_request]
4+
5+
jobs:
6+
go:
7+
runs-on: ubuntu-latest
8+
9+
strategy:
10+
matrix:
11+
go-version: [1.12.x, 1.13.x]
12+
13+
steps:
14+
- name: Install Go
15+
uses: actions/setup-go@v1
16+
with:
17+
go-version: ${{ matrix.go-version }}
18+
- name: Check out code into the Go module directory
19+
uses: actions/checkout@v1
20+
- name: Test
21+
run: make ci

.goreleaser.yml

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

0 commit comments

Comments
 (0)