Skip to content

Bump github.com/antonmedv/expr from 1.14.0 to 1.15.1 #360

Bump github.com/antonmedv/expr from 1.14.0 to 1.15.1

Bump github.com/antonmedv/expr from 1.14.0 to 1.15.1 #360

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
- name: Vet
run: go vet ./...