1
1
mirror of https://github.com/walles/moar.git synced 2024-09-11 20:17:13 +03:00
moar/.github/workflows/windows-ci.yml
Johan Walles c648074c8a Bump actions to latest versions
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.
2023-09-23 12:55:27 +02:00

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 ./...