Skip to content

Commit

Permalink
github: add action
Browse files Browse the repository at this point in the history
  • Loading branch information
bitromortac committed Nov 20, 2022
1 parent 4aa08bd commit 9f8a519
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# action.yml
name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:

jobs:
itest:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: build docker image
run: docker build -t lnregtest:latest .
- name: run tests
run: docker run -t lnregtest:latest python3 lnregtest.py -h

0 comments on commit 9f8a519

Please sign in to comment.