Skip to content

chore(deps): bump golang.org/x/net from 0.33.0 to 0.55.0 #818

chore(deps): bump golang.org/x/net from 0.33.0 to 0.55.0

chore(deps): bump golang.org/x/net from 0.33.0 to 0.55.0 #818

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Unit Testing
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the main and develop branches
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
linux:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: 1.25.x
- name: Cache deps
uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Test
run: ./scripts/test.sh
windows:
runs-on: windows-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.25.x
- name: Checkout code
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Test
run: ./scripts/test_windows.ps1