Skip to content

Commit

Permalink
Merge d74dc77 into 36d4554
Browse files Browse the repository at this point in the history
  • Loading branch information
17451k committed Apr 24, 2020
2 parents 36d4554 + d74dc77 commit 01edb0d
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: test

on: [push, pull_request]
on: [push]

jobs:
build:
Expand All @@ -9,7 +9,9 @@ jobs:
strategy:
matrix:
python-version: [3.5, 3.6, 3.7, 3.8]
os: [ubuntu-latest]
os: [ubuntu-latest, macos-latest]
exclude:
- { python-version: 3.8, os: macos-latest }

steps:
- uses: actions/checkout@v2
Expand All @@ -20,6 +22,7 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Install system dependencies [Ubuntu]
if: startsWith(matrix.os, 'ubuntu')
run: |
sudo apt-get update
sudo apt-get install -y graphviz gcc-multilib
Expand All @@ -33,12 +36,12 @@ jobs:
- name: Download CIF [Ubuntu]
if: startsWith(matrix.os, 'ubuntu')
run: |
curl -sSfL -o cif.tar.xz https://github.com/17451k/cif/releases/download/2020-03-13/cif-8c83608-2020-03-13-linux-x64.tar.xz
curl -sSfL -o cif.tar.xz https://github.com/17451k/cif/releases/download/2020-04-24/cif-914c8f86-2020-04-24-linux-x64.tar.xz
- name: Download CIF [macOS]
if: startsWith(matrix.os, 'macos')
run: |
curl -sSfL -o cif.tar.xz https://github.com/17451k/cif/releases/download/2020-03-13/cif-8c83608-2020-03-13-macos.tar.xz
curl -sSfL -o cif.tar.xz https://github.com/17451k/cif/releases/download/2020-04-24/cif-914c8f86-2020-04-24-macos.tar.xz
- name: Install CIF
run: |
Expand Down

0 comments on commit 01edb0d

Please sign in to comment.