Skip to content

Bump actions/checkout from 3.5.3 to 3.6.0 #73

Bump actions/checkout from 3.5.3 to 3.6.0

Bump actions/checkout from 3.5.3 to 3.6.0 #73

Workflow file for this run

name: test-meltingpot
on:
push:
branches:
- main
paths:
- '.github/actions/install-meltingpot/action.yml'
- '.github/workflows/test-meltingpot.yml'
- 'meltingpot/**'
- 'pyproject.toml'
- 'setup.py'
pull_request:
branches:
- main
paths:
- '.github/actions/install-meltingpot/action.yml'
- '.github/workflows/test-meltingpot.yml'
- 'meltingpot/**'
- 'pyproject.toml'
- 'setup.py'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
permissions: read-all
jobs:
pytest:
name: Test Melting Pot
runs-on: ${{ matrix.os }}
env:
SYSTEM_VERSION_COMPAT: 0 # See https://github.com/actions/setup-python/issues/279.
timeout-minutes: 120
strategy:
fail-fast: ${{ github.event_name != 'workflow_dispatch' }}
matrix:
os:
- macos-11
- ubuntu-20.04
python-version:
- '3.10'
steps:
- name: Checkout Melting Pot
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
- name: Install Melting Pot
uses: ./.github/actions/install-meltingpot
with:
python-version: ${{ matrix.python-version }}
- name: Test Melting Pot
run: pytest meltingpot