Compile Hello World on Windows

This commit is contained in:
Matthias Pigulla 2021-03-01 07:32:27 +00:00
parent 9406a51fa5
commit 25b1b5d69f
2 changed files with 10 additions and 0 deletions

10
.github/workflows/compile.yml vendored Normal file
View file

@ -0,0 +1,10 @@
on: [push, pull_request]
jobs:
compile:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- run: |
cl test.c
test