Skip to content

Bump actions/checkout from 4 to 7 (#6) #11

Bump actions/checkout from 4 to 7 (#6)

Bump actions/checkout from 4 to 7 (#6) #11

Workflow file for this run

name: Build
permissions:
contents: read
on:
push:
branches: [master, main, develop]
pull_request:
branches: [master, main, develop]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.21", "1.22"]
steps:
- name: Checkout code
uses: actions/checkout@v7
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: make build
- name: Test
run: make test
- name: Verify binary
run: ./apache-waf-ui --version