From 164e88224767929f01bf8ea91e542adf086a8a57 Mon Sep 17 00:00:00 2001 From: ilammy Date: Tue, 11 Feb 2020 23:42:24 +0200 Subject: [PATCH] Integration test for release version Make sure that the released version is also fine. Run this test every time a push is made into the release branch as well as on schedule. --- .github/workflows/release.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..3c845ed --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,25 @@ +name: msvc-dev-cmd (release) + +on: + push: + branches: + - release/* + schedule: + - cron: '0 6 * * *' + +jobs: + test: + name: release + runs-on: windows-latest + strategy: + fail-fast: false + steps: + - name: Setup Developer Command Prompt + uses: ilammy/msvc-dev-cmd@v1 + - name: Check out source code + uses: actions/checkout@v1 + - name: Compile and run some C code + shell: cmd + run: | + cl.exe hello.c + hello.exe