mirror of
https://github.com/walles/moar.git
synced 2024-11-22 21:50:43 +03:00
c648074c8a
For Go this means we get caching between runs. For Checkout this means that we now use a supported Node setup, making us not get warnings in the web UI.
22 lines
371 B
YAML
22 lines
371 B
YAML
name: Windows CI
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
pull_request:
|
|
|
|
jobs:
|
|
validate:
|
|
runs-on: windows-2022
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version-file: "go.mod"
|
|
|
|
- run: go build
|
|
- run: go test -timeout 30s ./...
|