Skip to content

Commit

Permalink
ci: add simple build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mudler committed Jan 16, 2024
1 parent cdd3952 commit 53f0782
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
name: 'Build test'

on:
pull_request:
push:
branches:
- main

concurrency:
group: oci2sysext-${{ github.ref || github.head_ref }}
cancel-in-progress: true

env:
FORCE_COLOR: 1

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build
run: |
make

0 comments on commit 53f0782

Please sign in to comment.