Skip to content

Commit 8ff44d1

Browse files
authored
Create test.yml
1 parent adfa2f4 commit 8ff44d1

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/test.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
name: Test
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches-ignore:
7+
- 'dependabot/**'
8+
9+
jobs:
10+
publish:
11+
name: Test
12+
runs-on: ubuntu-latest
13+
if: ${{ github.ref == 'refs/heads/master' }}
14+
steps:
15+
- uses: actions/checkout@v2
16+
- uses: actions/setup-python@v1
17+
- uses: BSFishy/pip-action@v1
18+
with:
19+
packages: |
20+
docker
21+
- run: ./test/run

0 commit comments

Comments
 (0)