Skip to content

Update workflows to use composite actions #20

Update workflows to use composite actions

Update workflows to use composite actions #20

Workflow file for this run

name: test-examples
on:
push:
branches:
- main
paths:
- '.github/actions/install-examples.yml'
- '.github/actions/install-meltingpot.yml'
- '.github/workflows/test-examples.yml'
- 'examples/**'
- 'meltingpot/**'
- 'setup.py'
- 'pyproject.toml'
pull_request:
branches:
- main
paths:
- '.github/actions/install-examples.yml'
- '.github/actions/install-meltingpot.yml'
- '.github/workflows/test-examples.yml'
- 'examples/**'
- 'meltingpot/**'
- 'setup.py'
- 'pyproject.toml'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
permissions: read-all
jobs:
test-examples:
name: Test examples
runs-on: ubuntu-latest
timeout-minutes: 90
steps:
- name: Checkout Melting Pot
uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3
- name: Install examples
uses: ./.github/actions/install-examples
- name: Test examples
run: pytest examples