Skip to content

Added flag -dev to GoPhp #10

Added flag -dev to GoPhp

Added flag -dev to GoPhp #10

name: Go Build and Test
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
build:
name: Build & Run Tests
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.22
uses: actions/setup-go@v5
with:
go-version: ^1.22
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Building
run: go build -v ./...
- name: Testing
run: go test -cover ./...