Skip to content

Commit

Permalink
meta: add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
e0ff committed Nov 21, 2023
1 parent d4b0e53 commit 0586247
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI

on:
push:
branches:
master
pull_request:
branches:
master

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Build
- run: make
test:
runs-on: ubuntu-latest
- name: Check out repository code
uses: actions/checkout@v4
- name: Run Tests
- run: make test

0 comments on commit 0586247

Please sign in to comment.