Skip to content

Commit

Permalink
Merge pull request #1 from nikulabs/nikulabs-actions
Browse files Browse the repository at this point in the history
Build with GitHub Actions
  • Loading branch information
nikulabs authored Jan 31, 2020
2 parents 865af16 + 0f77965 commit dc35bfa
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: C/C++ CI

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: make
run: make
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CFLAGS=-Wall -fno-strict-aliasing -fwrapv -Wstrict-prototypes -std=c99 -lm
CXXFLAGS=-Wall -fno-strict-aliasing -fwrapv -Wstrict-prototypes -std=c99 -lm -fpermissive -Wint-to-pointer-cast
all: pifm

clean:
Expand Down

0 comments on commit dc35bfa

Please sign in to comment.