Skip to content

Commit

Permalink
added workflow for integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jmtx1020 committed Feb 18, 2024
1 parent 3db58fa commit 4101ead
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/go_api_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Go QuickNode API Integration Tests

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
test:
name: Run tests
runs-on: ubuntu-latest

env:
MY_SECRET: ${{ secrets.QUICKNODE_API_TOKEN= }}

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '1.21.6' # Change this to the version of Go you are using

- name: Run tests
run: go test ./...

0 comments on commit 4101ead

Please sign in to comment.