Skip to content

chore: Update .gitignore, README badges, and expand decompiler notes #54

chore: Update .gitignore, README badges, and expand decompiler notes

chore: Update .gitignore, README badges, and expand decompiler notes #54

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
strategy:
fail-fast: false
matrix:
python-version: ["3.11"]
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install -e .[dev]
- name: Set up Haxe
uses: krdlab/setup-haxe@v1
with:
haxe-version: 4.3.4
- uses: extractions/setup-just@v2
- name: Build test samples
run: |
just build-tests
- name: Test with pytest
run: |
pytest
- name: Check with mypy
run: |
mypy --strict --check-untyped-defs crashlink