mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-10 20:26:35 +00:00

Also update golang.org/x/net and google.golang.org/grpc to fix vulnerabilities, although cloudflared is using them in a way that is not exposed to those risks
19 lines
416 B
YAML
19 lines
416 B
YAML
on: [push, pull_request]
|
|
name: Check
|
|
jobs:
|
|
check:
|
|
strategy:
|
|
matrix:
|
|
go-version: [1.21.x]
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- name: Install Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
- name: Test
|
|
run: make test
|