Skip to content

Commit

Permalink
Merge pull request #1651 from okta/vcr_gh_workflow
Browse files Browse the repository at this point in the history
VCR runner in GH action
  • Loading branch information
MikeMondragon-okta authored Jul 27, 2023
2 parents 45c6677 + ebbd758 commit ef72dfc
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/vcr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# play VCR tests in a GH action
name: VCR

on: workflow_dispatch

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: "1.20"

- name: Run VCR tests
run: make test-play-vcr-acc

0 comments on commit ef72dfc

Please sign in to comment.