Skip to content

Merge pull request #6 from jaqx0r/dependabot/github_actions/actions/c… #21

Merge pull request #6 from jaqx0r/dependabot/github_actions/actions/c…

Merge pull request #6 from jaqx0r/dependabot/github_actions/actions/c… #21

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
compiler: [ gcc, clang ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: install dependencies
run: |
sudo apt-get install -y \
curl \
scons \
bison \
flex \
dejagnu \
lcov \
${{ matrix.compiler }}
- name: test
run: scons coverage=yes check coverage.info
env:
CC: ${{ matrix.compiler }}
- uses: codecov/codecov-action@v1
with:
file: coverage.info
- name: distcheck
run: scons distcheck
env:
CC: ${{ matrix.compiler }}