Merge pull request #75 from Kijewski/dependabot/submodules/third-part… #94
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
python: | |
- '3.8' | |
- '3.11' | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Cache pip | |
uses: actions/cache@v3 | |
with: | |
key: cache--${{ matrix.os }}--${{ matrix.python }}--${{ hashFiles('./requirements*.txt', './Makefile') }} | |
restore-keys: cache--${{ matrix.os }}--${{ matrix.python }}-- | |
path: ~/.cache/pip | |
- name: Setup python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Display Python version | |
run: python -c 'import sys; print(sys.version)' | |
- name: Update pip | |
run: python -m pip install -U pip wheel setuptools | |
- name: Install requirements | |
run: python -m pip install -Ur requirements-dev.txt | |
- name: Compile project | |
run: make install | |
- name: Run JSON5 tests suite | |
run: python run-tests.py | |
- name: Run "JSON is a Minefield" suite | |
run: python run-minefield-test.py | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Cache pip | |
uses: actions/cache@v3 | |
with: | |
key: lint--${{ hashFiles('./requirements*.txt', './Makefile') }} | |
restore-keys: lint-- | |
path: ~/.cache/pip | |
- name: Setup python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Display Python version | |
run: python -c 'import sys; print(sys.version)' | |
- name: Update pip | |
run: python -m pip install -U pip wheel setuptools | |
- name: Install requirements | |
run: python -m pip install -Ur requirements-dev.txt | |
- name: Compile project | |
run: make install | |
- name: Run black | |
run: python -m black --check ./*.py ./src/ |