Skip to content

Commit

Permalink
added dedicated CI workflow for PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
jstucke committed Aug 15, 2024
1 parent a3d0ce8 commit 327eea5
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Build CI
on: pull_request

jobs:
release:
runs-on: ubuntu-20.04

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install Make
run: sudo apt-get install make

- name: Build
run: make all
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: Main
name: Release
on: push

jobs:
release:
# We use Ubuntu 20.04 to have an older version of the file tool.
# If we used a newer Ubuntu it it would complain about incompatible magic
# If we used a newer Ubuntu, it would complain about incompatible magic
# file format on older Ubuntu versions.
runs-on: ubuntu-20.04

Expand Down

0 comments on commit 327eea5

Please sign in to comment.