Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitde5e699

Browse files
committed
initial go at github actions
1 parent0056ae8 commitde5e699

File tree

2 files changed

+40
-18
lines changed

2 files changed

+40
-18
lines changed

‎.drone.yml

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

‎.github/workflows/ci.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name:CI
2+
3+
on:[push, pull_request]
4+
5+
jobs:
6+
lint:
7+
runs-on:ubuntu-latest
8+
9+
steps:
10+
-name:Checkout code
11+
uses:actions/checkout@v2
12+
with:
13+
fetch-depth:50
14+
15+
-name:Set up Go
16+
uses:actions/setup-go@v4
17+
with:
18+
go-version:'stable'
19+
20+
-name:Run lint
21+
run:make lint
22+
23+
test:
24+
runs-on:ubuntu-latest
25+
26+
steps:
27+
-name:Checkout code
28+
uses:actions/checkout@v2
29+
with:
30+
fetch-depth:50
31+
32+
-name:Set up Go
33+
uses:actions/setup-go@v4
34+
with:
35+
go-version:'stable'
36+
37+
-name:Run tests
38+
run:|
39+
go test -v -mod=vendor ./...
40+
./integrationtest.sh

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp