run tests
This commit is contained in:
parent
8562f9e85e
commit
dc615d9ad1
1 changed files with 28 additions and 0 deletions
28
.github/workflows/run-framework-tests.yml
vendored
Normal file
28
.github/workflows/run-framework-tests.yml
vendored
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
name: Framework Tests
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- '**' # Runs on any branch push
|
||||
pull_request:
|
||||
branches:
|
||||
- '**' # Runs on any pull request to any branch
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Set up Go
|
||||
uses: actions/setup-go@v4
|
||||
with:
|
||||
go-version: '1.23' # Specify the Go version you need
|
||||
|
||||
- name: Install dependencies
|
||||
run: go mod download
|
||||
|
||||
- name: Run Go tests
|
||||
run: go test ./...
|
||||
Loading…
Reference in a new issue