Bump actions/cache from 3 to 4 #20
Workflow file for this run
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: build | |
on: | |
push: | |
branches: | |
- main | |
- release** | |
paths-ignore: | |
- '**.md' | |
- '**.rst' | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
- '**.rst' | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }}-latest | |
strategy: | |
fail-fast: False | |
matrix: | |
os: [windows, ubuntu, macos] | |
python-version: ["3.11"] | |
include: | |
- os: ubuntu | |
python-version: "3.10" | |
- os: ubuntu | |
python-version: "3.9" | |
- os: ubuntu | |
python-version: "3.8" | |
# Disabled for now. See https://github.com/projectmesa/mesa/issues/1253 | |
#- os: ubuntu | |
# python-version: 'pypy-3.8' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('Pipfile.lock') }} | |
- name: Install dependencies | |
run: pip install wheel && pip install .[dev] | |
# - name: Test with pytest | |
# run: pytest --cov=mesa_viz_tornado tests/ --cov-report=xml | |
- if: matrix.os == 'ubuntu' | |
name: Codecov | |
uses: codecov/codecov-action@v3 | |
lint-ruff: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- run: pip install ruff==0.0.275 | |
- name: Lint with ruff | |
# Include `--format=github` to enable automatic inline annotations. | |
# Use settings from pyproject.toml. | |
run: ruff . --format=github | |
lint-black: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- run: pip install black | |
- name: Lint with black | |
run: black --check . |