Skip to content

Commit

Permalink
run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
maddalax committed Sep 22, 2024
1 parent 8562f9e commit dc615d9
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/run-framework-tests.yml
Original file line number Diff line number Diff line change
@@ -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 ./...

0 comments on commit dc615d9

Please sign in to comment.