Delete .github/workflows/testing.yml
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 5s
Build and Push Docker Image / testing (1.24.x, ubuntu-latest) (push) Successful in 1m14s

This commit is contained in:
Alex Savin
2025-04-29 12:18:16 -04:00
parent 769828c98a
commit c289808993

View File

@ -1,53 +0,0 @@
name: Testing
on:
push:
# workflow_dispatch:
# branches: [ develop ]
# paths-ignore:
# - 'README.md'
# - '.github/**'
jobs:
test:
strategy:
matrix:
go-version: [1.24.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v4
- run: |
go get -u .
go test ./.
# test-cache:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/setup-go@v3
# with:
# go-version: 1.20.x
# - uses: actions/checkout@v3
# - uses: actions/cache@v3
# with:
# # In order:
# # * Module download cache
# # * Build cache (Linux)
# # * Build cache (Mac)
# # * Build cache (Windows)
# path: |
# ~/go/pkg/mod
# ~/.cache/go-build
# ~/Library/Caches/go-build
# ~\AppData\Local\go-build
# key: ${{ runner.os }}-go-${{ matrix.go-version }}-${{ hashFiles('**/go.sum') }}
# restore-keys: |
# ${{ runner.os }}-go-${{ matrix.go-version }}-
# - run: go test ./...