We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26123b5 commit e0a95dbCopy full SHA for e0a95db
1 file changed
.github/workflows/runtests.yml
@@ -0,0 +1,28 @@
1
+name: push
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ - main
8
+ pull_request:
9
10
11
12
+ release:
13
+ types:
14
+ - released
15
16
+jobs:
17
+ build:
18
+ runs-on: ubuntu-latest
19
+ steps:
20
+ - uses: actions/checkout@v2
21
+ - name: Build and Test
22
+ uses: docker/build-push-action@v2
23
+ with:
24
+ context: .
25
+ push: false
26
+ load: true
27
+ tags: ${{ github.repository }}:${{ github.sha }}
28
+ build-args: TESTS=1
0 commit comments