Skip to content

Update c-cpp.yml

Update c-cpp.yml #26

Workflow file for this run

name: C/C++ CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: windows-2019
steps:
- uses: actions/checkout@v4
- name: Run clang-tidy linter
run: clang-tidy *.c *.h
- name: Build x86 project
shell: cmd
run: >
"C:\Progra~2\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars32.bat"
&& cl /W3 main.c hd.c /Fe hd.exe
# - name: configure
# run: ./configure
# - name: make
# run: make
# - name: make check
# run: make check
# - name: make distcheck
# run: make distcheck