2020-12-18 14:34:28 -05:00
|
|
|
name: CI
|
|
|
|
on:
|
|
|
|
push:
|
2020-12-26 05:01:29 -05:00
|
|
|
pull_request:
|
2020-12-18 14:34:28 -05:00
|
|
|
schedule:
|
|
|
|
- cron: '0 8 * * 6'
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-02-14 06:45:05 -05:00
|
|
|
python: [3.6, 3.7, 3.9]
|
2020-12-18 14:34:28 -05:00
|
|
|
name: Python ${{ matrix.python }}
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
- uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python }}
|
|
|
|
- run: ./test/test
|