Skip to content

Commit

Permalink
Merge ebd83dd into 3334232
Browse files Browse the repository at this point in the history
  • Loading branch information
CleanCut committed Nov 2, 2020
2 parents 3334232 + ebd83dd commit 951c464
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 2 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/ci-windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Windows CI

on:
push:
branches: [master]
pull_request:
branches: [master]

jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest]
python-version: [3.6, 3.7, 3.8]

steps:
- uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
%PYTHON%/python.exe -m pip install --upgrade pip
%PYTHON%/Scripts/pip.exe install -r requirements-optional.txt
- name: Test
run: |
%PYTHON%/python.exe -m green.cmdline -vvv -t green -s 1
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI
name: Posix CI

on:
push:
Expand All @@ -11,7 +11,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
os: [macos-latest, ubuntu-latest]
python-version: [3.6, 3.7, 3.8]

steps:
Expand Down

0 comments on commit 951c464

Please sign in to comment.