We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ec90ac commit a3607f4Copy full SHA for a3607f4
.github/workflows/docker-publish.yml
@@ -1,12 +1,21 @@
1
name: Publish Docker
2
3
-on:
4
- workflow_run:
5
- workflows: ['Test']
6
- types: [completed]
+on: [push]
7
8
jobs:
9
- build:
+ test:
+ name: Test
+ runs-on: ubuntu-latest
+ steps:
10
+ - uses: actions/checkout@v2
11
+ - name: Install modules
12
+ run: yarn
13
+ - name: Run MinIO
14
+ run: docker-compose up -d
15
+ - name: Run tests
16
+ run: yarn test
17
+ publish:
18
+ name: Publish
19
runs-on: ubuntu-latest
20
steps:
21
- uses: actions/checkout@master
.github/workflows/test.yml
0 commit comments