blob: f5ddec1b58fbcd4e8e2390c5fe94be48feecae03 [file] [log] [blame]
name: So, does it work?
on: [push]
jobs:
build:
runs-on: ubuntu-18.04
strategy:
matrix:
python-version: [ '3.5', '3.6', '3.7', '3.8' ]
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v1
- name: Update submodules
run: |
git submodule init
git submodule update
- name: Setup python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install requirements
run: python -m pip install -Ur requirements.txt
- name: Compile project
run: make
- name: Run JSON5 tests suite
run: python run-tests.py
- name: Run "JSON is a Minefield" suite
run: python run-minefield-test.py