forked from wxbool/video-srt-windows
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request wxbool#26 from AsdStudio/master
添加Action测试&一些徽章
- Loading branch information
Showing
2 changed files
with
56 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters