Skip to content

fix: support for hikari v2 #55

fix: support for hikari v2

fix: support for hikari v2 #55

Workflow file for this run

name: CI
on:
pull_request:
jobs:
ci:
runs-on: ${{ matrix.os }}-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
os: [ubuntu, windows]
name: ${{ matrix.python-version }} ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Nox
run: pip install nox
- name: Run Nox
run: nox
- name: Upload to CodeCov
uses: codecov/codecov-action@v2