From e273741da7e3dee8cbbe478e4e905f3ea6f77f0e Mon Sep 17 00:00:00 2001 From: Felix Date: Sat, 20 May 2023 18:18:25 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Add=20CI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yaml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/build.yaml diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 0000000..f3dc0af --- /dev/null +++ b/.github/workflows/build.yaml @@ -0,0 +1,25 @@ +name: Build + +on: + push: + +jobs: + + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Set up Go + uses: actions/setup-go@v3 + with: + go-version: 1.19 + + - name: Build + run: go build -o oidc-debug-linux main.go + + - name: Upload a Build Artifact + uses: actions/upload-artifact@v3.1.2 + with: + name: oidc-debug-linux + path: ./oidc-debug-linux