diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml new file mode 100644 index 0000000..944ad0a --- /dev/null +++ b/.github/workflows/compile.yml @@ -0,0 +1,10 @@ +on: [push, pull_request] + +jobs: + compile: + runs-on: windows-latest + steps: + - uses: actions/checkout@v2 + - run: | + cl test.c + test diff --git a/.github/workflows/demo.yml b/.github/workflows/demo.yml-disabled similarity index 100% rename from .github/workflows/demo.yml rename to .github/workflows/demo.yml-disabled