Skip to content

Commit

Permalink
ci: Test on fedora latest and ubuntu latest
Browse files Browse the repository at this point in the history
Closes #295
  • Loading branch information
riddell-stan committed May 16, 2021
1 parent 60be930 commit c2d465a
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,20 @@ on: [push, pull_request]
jobs:
tests:
name: pystan tests
runs-on: ${{ matrix.os }}
timeout-minutes: 20
runs-on: ${{ matrix.runs-on }}
strategy:
matrix:
os: [ubuntu-20.04, macos-10.15]
python-version: [3.7, 3.8, 3.9]
include:
- {runs-on: ubuntu-20.04, python-version: 3.7}
- {runs-on: ubuntu-20.04, python-version: 3.8}
- {runs-on: ubuntu-20.04, python-version: 3.9}
- {runs-on: macos-10.15, python-version: 3.7}
- {runs-on: macos-10.15, python-version: 3.8}
- {runs-on: macos-10.15, python-version: 3.9}
- {runs-on: ubuntu-20.04, container: "ubuntu:latest", python-version: 3.8}
- {runs-on: ubuntu-20.04, container: "fedora:latest", python-version: 3.8}

steps:
- name: Check out repository
uses: actions/checkout@v2
Expand Down

0 comments on commit c2d465a

Please sign in to comment.