Files
msvc-dev-cmd/.github/workflows/release.yml
T
ilammy 5cf1eeecd8 Test with multiple Python versions
In particular, runners and Node.js seems to be failing with Python 2.
We'd better test those to see if they ever break on us.
2020-02-11 23:47:59 +02:00

34 lines
642 B
YAML

name: msvc-dev-cmd (release)
on:
push:
branches:
- release/*
- wip/debugging
schedule:
- cron: '0 6 * * *'
jobs:
test:
name: release
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
python-version:
- '2.7'
- '3.5'
- '3.6'
- '3.7'
- '3.8'
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