Skip to content

Commit

Permalink
fix: GH actions uses new test scripts
Browse files Browse the repository at this point in the history
Signed-off-by: Carson Long <12767276+ctlong@users.noreply.github.com>
  • Loading branch information
rroberts2222 authored and ctlong committed Apr 11, 2024
1 parent aa6cc01 commit 9be561d
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 44 deletions.
44 changes: 0 additions & 44 deletions .github/workflows/go.yml

This file was deleted.

30 changes: 30 additions & 0 deletions .github/workflows/scripts.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: scripts

on:
push:
branches:
- main
- v[0-9]*
pull_request:
branches:
- main
- v[0-9]*

jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: "src/go.mod"
- run: ./scripts/subtests/unit-test

lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: "src/go.mod"
- run: ./scripts/subtests/lint

0 comments on commit 9be561d

Please sign in to comment.