Skip to content

Make Multiset(s) subscriptable with Multiset[_T] syntax #112

Make Multiset(s) subscriptable with Multiset[_T] syntax

Make Multiset(s) subscriptable with Multiset[_T] syntax #112

name: Dependabot Tests
on: pull_request_target
jobs:
build:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
name: Run tests
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install dependencies
run: make init
- name: Run tests
run: make test