Skip to content

chore: bump dep for security (#10) #29

chore: bump dep for security (#10)

chore: bump dep for security (#10) #29

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
env:
GOPRIVATE: github.com/infracost/*
TARGET_ORG: infracost
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- run: go test ./...
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- uses: golangci/golangci-lint-action@v7
with:
version: v2.4
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Check formatting
run: test -z "$(gofmt -l .)"