1
0
mirror of https://github.com/danog/liquid.git synced 2024-11-30 08:39:01 +01:00
liquid/.github/workflows/go.yml

31 lines
539 B
YAML
Raw Normal View History

name: Build Status
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
2021-06-26 08:43:59 +02:00
jobs:
test:
strategy:
matrix:
go-version: [1.17.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
2021-06-26 08:43:59 +02:00
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
2021-06-26 08:43:59 +02:00
- name: Checkout
uses: actions/checkout@v2
2021-06-26 08:43:59 +02:00
- name: Build
run: go build -v ./...
2021-06-26 08:43:59 +02:00
- name: Test
run: go test ./...