Skip to content

chore(ide): removed list of protected branches (let GitHub validate it) #60

chore(ide): removed list of protected branches (let GitHub validate it)

chore(ide): removed list of protected branches (let GitHub validate it) #60

Workflow file for this run

name: Validation
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go-version: [ '1.21', '1.22' ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Download dependencies
run: go mod download -x
- name: Test
run: go test ./...