Skip to content

Commit

Permalink
Create action to run Bank tests
Browse files Browse the repository at this point in the history
  • Loading branch information
leesheppard committed May 30, 2023
1 parent 0e5a1c7 commit 6aedd58
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/banking.yml
@@ -0,0 +1,23 @@
name: Funds transfer tests

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

permissions:
contents: read

jobs:
test:

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf
with:
bundler-cache: true
- name: Run tests
run: rspec

0 comments on commit 6aedd58

Please sign in to comment.