Merge branch 'master' of github.com:Hami-Lemon/LrcToSrt
This commit is contained in:
commit
845ec9c5fe
2 changed files with 26 additions and 0 deletions
23
.github/workflows/go.yml
vendored
Normal file
23
.github/workflows/go.yml
vendored
Normal file
|
@ -0,0 +1,23 @@
|
|||
name: Build
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Set up Go
|
||||
uses: actions/setup-go@v2
|
||||
with:
|
||||
go-version: 1.17
|
||||
check-latest: true
|
||||
|
||||
- name: Build
|
||||
run: go build -v ./...
|
|
@ -1,4 +1,7 @@
|
|||
# LrcToSrt
|
||||
|
||||
[](https://github.com/Hami-Lemon/LrcToSrt/actions/workflows/go.yml)
|
||||
|
||||
用于将LRC歌词文件转换成SRT字幕文件
|
||||
|
||||
## 功能
|
||||
|
|
Reference in a new issue