Skip to content

Commit

Permalink
👷 add GCC job
Browse files Browse the repository at this point in the history
  • Loading branch information
nlohmann committed Dec 19, 2020
1 parent 4cc882f commit 8616fc3
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/self_hosted.yml
Expand Up @@ -9,13 +9,20 @@ jobs:
- name: checkout
uses: actions/checkout@v1

lint:
pedantic_clang:
runs-on: self-hosted
needs: checkout
steps:
- name: pedantic
run: make pedantic_clang

pedantic_gcc:
runs-on: self-hosted
needs: checkout
steps:
- name: pedantic
run: CXX=/usr/local/bin/g++-10 make pedantic_gcc

build:
runs-on: self-hosted
needs: checkout
Expand Down

0 comments on commit 8616fc3

Please sign in to comment.