Skip to content

build(deps-dev): Bump phpstan/phpstan from 2.2.6 to 2.2.7 #1256

build(deps-dev): Bump phpstan/phpstan from 2.2.6 to 2.2.7

build(deps-dev): Bump phpstan/phpstan from 2.2.6 to 2.2.7 #1256

Workflow file for this run

name: 'Go CI'
on:
push:
branches:
- 'main'
pull_request:
branches:
- '*'
permissions:
contents: read
jobs:
go-ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Setup Go
uses: actions/setup-go@v7
with:
go-version: 'stable'
- name: Run build
working-directory: ./potal
run: go build .
- name: Run vet
working-directory: ./potal
run: go vet .
- name: Run lint
uses: golangci/golangci-lint-action@v9
with:
working-directory: ./potal
- name: Run tests
working-directory: ./potal
run: go test -v -count=1 -race ./...