8000 build(deps): bump golang.org/x/mod from 0.23.0 to 0.24.0 · jmooring/hvm@1456b3e · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

build(deps): bump golang.org/x/mod from 0.23.0 to 0.24.0 #204

build(deps): bump golang.org/x/mod from 0.23.0 to 0.24.0

build(deps): bump golang.org/x/mod from 0.23.0 to 0.24.0 #204

Workflow file for this run

on:
pull_request:
branches: [main]
name: test
permissions:
contents: read
jobs:
test:
strategy:
matrix:
go-version: [1.24.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
check-latest: true
cache: true
cache-dependency-path: |
**/go.sum
**/go.mod
- name: Install hvm
run: go install
- name: Test
env:
HVM_GITHUBTOKEN: ${{ secrets.GITHUB_TOKEN }}
run: go test ./...
0