Skip to content

Commit

Permalink
Test Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
CEKlopfenstein committed May 17, 2024
1 parent c0791a9 commit a6a9e1c
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Makefile CI

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
workflow_dispatch:

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Build
run: make build

- name: 'Upload Artifact'
uses: actions/upload-artifact@v4
with:
name: my-artifact
path: build/cekwebhooks-linux-amd64.so
retention-days: 1

0 comments on commit a6a9e1c

Please sign in to comment.