Switched C standard from gnu89
to C11
#86
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: validate | |
on: | |
push: | |
branches-ignore: ["gh-pages"] # Exclude the gh-pages branch | |
pull_request: | |
branches-ignore: ["gh-pages"] # Exclude the gh-pages branch | |
workflow_dispatch: | |
branches: ["*"] # Included ["*"] for consistency | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install libnuma-dev | |
run: sudo apt-get -y install libnuma-dev | |
- name: validate | |
run: ./validate.sh |