Skip to content

Bump golang.org/x/net from 0.25.0 to 0.33.0 #179

Bump golang.org/x/net from 0.25.0 to 0.33.0

Bump golang.org/x/net from 0.25.0 to 0.33.0 #179

Workflow file for this run

name: "prechecks"
on:
workflow_dispatch:
pull_request_target:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.merge_commit_sha }}
- name: Setup golang environment
uses: actions/setup-go@v5
with:
go-version: "1.22"
- name: Install dependencies
run: go mod tidy
- name: Run go test
run: make test
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.merge_commit_sha }}
- name: Setup golang environment
uses: actions/setup-go@v5
with:
go-version: "1.22"
- name: Install dependencies
run: go mod tidy
- name: Make sure app can build
run: make build