Skip to content

Bump github.com/BurntSushi/toml from 1.3.2 to 1.4.0 (#94) #88

Bump github.com/BurntSushi/toml from 1.3.2 to 1.4.0 (#94)

Bump github.com/BurntSushi/toml from 1.3.2 to 1.4.0 (#94) #88

Workflow file for this run

name: CI
on:
push:
# Avoid duplicate builds on PRs.
branches:
- main
pull_request:
permissions:
contents: read
jobs:
test-and-build:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Go and dependencies
uses: actions/setup-go@v5
with:
cache: true
go-version-file: go.mod
- name: Test
run: make test
- name: Build
run: make build