Run the CI in clang
parent
06192ae499
commit
e816c545ea
|
@ -5,8 +5,13 @@ on: [pull_request, push]
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Build
|
- name: Build
|
||||||
run: make test
|
run: make test
|
||||||
|
build-ubuntu-clang:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Build
|
||||||
|
run: CC=clang CXX=clang++ make test
|
||||||
|
|
Loading…
Reference in New Issue