forked from wxbool/video-srt-windows
-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (40 loc) · 1.09 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
name: Build&test video-srt-windows
on:
pull_request:
branches:
- master
- test
- i18n
push:
branches:
- master
- test
- i18n
jobs:
Build:
runs-on: windows-latest
strategy:
matrix:
ver: [ 'test','build' ]
go: [ '1.15','1.14', '1.13' ]
name: ${{ matrix.ver }} video-srt-windows With Go${{ matrix.go }}
steps:
- uses: actions/checkout@v2
- name: Setup go ${{ matrix.go }}
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: ${{ matrix.ver }} video-srt-windows in go ${{ matrix.go }}
run: go ${{ matrix.ver }}
- name: Cache local go package
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Artifact Pack
uses: actions/upload-artifact@v2
with:
name: videosrt-${{ matrix.ver }}-${{ matrix.go }}.exe
path: videosrt.exe