summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorEli Bendersky <eliben@users.noreply.github.com>2020-09-22 08:35:16 -0700
committerGitHub <noreply@github.com>2020-09-22 08:35:16 -0700
commite5bb8438b554e2906cbedf7b621d2197d07469e3 (patch)
treecae51f933eb8a5400398ffc682e88b9dfc5afab3 /.github
parent23c240116169dfb7e0f92eaa9426ab15d1f54531 (diff)
downloadpycparser-e5bb8438b554e2906cbedf7b621d2197d07469e3.tar.gz
Add multi-OS setup for github actions (#391)
* Test change * Add OS
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index aaa9b0c..bb51008 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -10,12 +10,14 @@ on:
jobs:
build:
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [2.7, 3.6, 3.7, 3.8]
+ os: [ubuntu-latest, macos-latest, windows-latest]
steps:
+
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2