summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-16 17:46:49 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-16 17:46:49 +0000
commitcb72c9fdb4b03ac859cbd6cffb5863c3a8c68a3e (patch)
treeaa73c39b7d4050293e36aed50b08683394b91817 /.github
parentInitial commit. (diff)
downloadgolang-github-coreos-go-oidc-v3-cb72c9fdb4b03ac859cbd6cffb5863c3a8c68a3e.tar.xz
golang-github-coreos-go-oidc-v3-cb72c9fdb4b03ac859cbd6cffb5863c3a8c68a3e.zip
Adding upstream version 3.4.0.upstream/3.4.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test.yaml23
1 files changed, 23 insertions, 0 deletions
diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml
new file mode 100644
index 0000000..0d42963
--- /dev/null
+++ b/.github/workflows/test.yaml
@@ -0,0 +1,23 @@
+name: test
+on:
+ push:
+ branches:
+ - v3
+ pull_request:
+ branches:
+ - v3
+
+jobs:
+ build:
+ name: Linux
+ runs-on: ubuntu-latest
+ steps:
+ - name: Set up Go 1.19
+ uses: actions/setup-go@v2
+ with:
+ go-version: '1.19'
+ id: go
+ - name: Check out code into the Go module directory
+ uses: actions/checkout@v2
+ - name: Test
+ run: "./test"