-
Notifications
You must be signed in to change notification settings - Fork 556
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 #258 from go-shiori/ci
Add GitHub Action to lint code and run unit tests on supported platforms + Go versions.
- Loading branch information
Showing
5 changed files
with
95 additions
and
1 deletion.
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,4 @@ | ||
#!/bin/zsh -e | ||
|
||
golint -set_exit_status ./... | ||
go mod tidy -v |
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,55 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
lint: | ||
name: Lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Install Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.14.x | ||
|
||
- name: Check out code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install golint | ||
run: go get golang.org/x/lint/golint | ||
|
||
- name: Lint Go source code | ||
run: golint -set_exit_status ./... | ||
|
||
test: | ||
name: Unit tests | ||
strategy: | ||
matrix: | ||
go-version: [1.12.x, 1.13.x, 1.14.x] | ||
platform: [ubuntu-latest, macos-latest, windows-latest] | ||
runs-on: ${{ matrix.platform }} | ||
steps: | ||
- name: Install Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ matrix.go-version }} | ||
|
||
- name: Check out code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Fetch dependencies | ||
run: | | ||
go get -v -t -d ./... | ||
- name: Run unit tests | ||
run: go test ./... | ||
|
||
# - name: Codecov | ||
# if: ${{ matrix.go-version == '1.14.x' && matrix.platform == 'ubuntu-latest' }} | ||
# uses: codecov/codecov-action@v1 | ||
# with: | ||
# file: coverage.out |
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 |
---|---|---|
|
@@ -6,4 +6,7 @@ | |
/shiori* | ||
|
||
# Exclude development data | ||
/dev-data | ||
/dev-data | ||
|
||
# Coverage data | ||
/coverage.out |
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
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,31 @@ | ||
modd.conf | ||
**/*.go { | ||
prep: " | ||
# run tests | ||
go test -cover @dirmods | ||
" | ||
} | ||
|
||
modd.conf | ||
**/*.go | ||
!**/*_test.go { | ||
prep: " | ||
# build | ||
go build -v -tags dev | ||
" | ||
} | ||
|
||
modd.conf | ||
internal/view/** { | ||
prep: " | ||
# compile static assets | ||
go generate ./... | ||
" | ||
} | ||
|
||
modd.conf | ||
**/*.html | ||
**/*.js | ||
shiori { | ||
daemon: ./shiori serve -p 5061 | ||
} |