forked from mirror/stringy
20 lines
263 B
YAML
20 lines
263 B
YAML
|
name: Stringy
|
||
|
|
||
|
on: push
|
||
|
|
||
|
jobs:
|
||
|
|
||
|
test:
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
|
||
|
- name: Set up Go
|
||
|
uses: actions/setup-go@v2
|
||
|
with:
|
||
|
go-version: 1.16
|
||
|
|
||
|
- name: Test
|
||
|
run: go test -v ./...
|