Skip to content

chore: .gitignore

chore: .gitignore #48

Workflow file for this run

name: test
on:
push:
pull_request:
jobs:
test:
strategy:
matrix:
os: [
ubuntu-latest,
windows-latest,
macos-latest
]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: 3.11.3
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mcdreforged
pip install pytest
- name: Test
run: pytest -v -s ./test/test.py