mirror of
https://github.com/jarun/nnn.git
synced 2024-11-01 00:47:18 +00:00
38 lines
766 B
YAML
38 lines
766 B
YAML
|
name: ci
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [master]
|
||
|
pull_request:
|
||
|
branches: [master]
|
||
|
|
||
|
jobs:
|
||
|
macOS-gcc:
|
||
|
runs-on: macOS-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- name: Compile with gcc
|
||
|
env:
|
||
|
CC: gcc
|
||
|
run: |
|
||
|
export CFLAGS="$CFLAGS -Werror"
|
||
|
make clean
|
||
|
make
|
||
|
make clean
|
||
|
macOS-clang:
|
||
|
runs-on: macOS-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- name: Compile with clang
|
||
|
env:
|
||
|
CC: clang
|
||
|
run: |
|
||
|
brew update
|
||
|
brew install llvm
|
||
|
export PATH="/usr/local/opt/llvm/bin:$PATH"
|
||
|
export CFLAGS="$CFLAGS -Werror"
|
||
|
make clean
|
||
|
make
|
||
|
make clean
|
||
|
clang-tidy src/* -- -I/usr/include
|