Skip to content

Commit

Permalink
Added workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Apr 18, 2020
1 parent f535aec commit 444eaea
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Main Workflow
on: [push]
jobs:
build-gcc:
name: Build GCC
strategy:
matrix:
gcc-version: [5, 6, 7, 8, 9]
runs-on: ubuntu-latest
container: gcc:${{ matrix.gcc-version }}
steps:
- uses: actions/checkout@v1
- run: make
build-clang:
name: Build Clang
strategy:
matrix:
clang-version: [3, 4, 5, 6, 7]
runs-on: ubuntu-latest
container: silkeh/clang:${{ matrix.clang-version }}
steps:
- uses: actions/checkout@v1
- run: CC=clang make

0 comments on commit 444eaea

Please sign in to comment.