Files
msvc-dev-cmd/.github/workflows/main.yml
T
ilammy a46bb485fb Use cmd.exe as shell
It works well and we don't need PowerShell which has weird notion of
default executable search path.
2020-02-11 23:37:34 +02:00

31 lines
573 B
YAML

name: msvc-dev-cmd
on:
pull_request:
push:
branches:
- master
- release/*
- wip/debugging
schedule:
- cron: '0 6 * * *'
jobs:
test:
name: default
runs-on: windows-latest
strategy:
fail-fast: false
steps:
- name: Check out source code
uses: actions/checkout@v1
- name: Download Internet
run: npm install
- name: Enable Developer Command Prompt
uses: ./
- name: Compile and run some C code
shell: cmd
run: |
cl.exe hello.c
hello.exe