mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-14 13:30:47 +00:00
16 lines
267 B
YAML
16 lines
267 B
YAML
|
name: unit tests
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
push:
|
||
|
|
||
|
permissions: read-all
|
||
|
|
||
|
jobs:
|
||
|
tests:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- run: python3 -m pip install --user colorama watchdog levenshtein cxxfilt
|
||
|
- run: python3 test.py
|