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 3854141 commit 686916dCopy full SHA for 686916d
.github/workflows/test-scripts.yml
@@ -1,12 +1,24 @@
1
-name: test-scripts
+name: upstream-tests
2
on:
3
pull_request:
4
paths:
5
- - 'scripts/**'
6
- - 'Makefile'
+ - '**'
+ - '!doc/contributors/**'
7
+ - '!doc/design/**'
8
schedule:
9
- cron: '0 0 * * *' # daily to pick up releases
10
jobs:
11
+ image-build:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Check out the repo
15
+ uses: actions/checkout@v2
16
+ - name: Build the container image
17
+ uses: docker/build-push-action@v1
18
+ with:
19
+ repository: operator-framework/olm
20
+ dockerfile: ./upstream.Dockerfile
21
+ push: false
22
run-local-minikube:
23
runs-on: ubuntu-latest
24
steps:
0 commit comments