Update c-cpp.yml #21
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: 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 | |
- name: Build x86 project | |
shell: cmd | |
run: > | |
"C:\Progra~2\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars32.bat" | |
&& cl main.c hd.c /Fehd.exe | |
# - name: configure | |
# run: ./configure | |
# - name: make | |
# run: make | |
# - name: make check | |
# run: make check | |
# - name: make distcheck | |
# run: make distcheck |