Skip to content

update github actions #1

update github actions

update github actions #1

Workflow file for this run

name: ci
on:
pull_request:
branches: '*'
push:
branches:
- master
- main
- 'release-*'
jobs:
test:
strategy:
matrix:
os: [ubuntu, windows]
golang: ['1.22', '1.23']
# currently, we cannot run non-x86_64 machines on Github Actions cloud env.
runs-on: ${{ matrix.os }}-latest
name: CI golang ${{ matrix.golang }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.golang }}
- name: Test
run: go test -v ./fluent