Skip to content

Commit

Permalink
attempt clang support
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanmjacobs committed Sep 17, 2023
1 parent 97d75bf commit 80d25bc
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/ci.yml
Expand Up @@ -2,13 +2,16 @@ name: CI
run-name: continuous integration
on: [push]
jobs:
gcc:
runs-on: ubuntu-22.04
test:
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04, ubuntu-latest]
cc: [gcc, clang]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- run: ./tests/test.sh
shell: bash
env:
CC: gcc
CXX: g++
FC: gfortran
with:
env:
CC: ${{ matrix.cc }}

0 comments on commit 80d25bc

Please sign in to comment.