forked from K0lb3/UnityPy
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (30 loc) · 680 Bytes
/
Copy pathtest.yml
File metadata and controls
40 lines (30 loc) · 680 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Test
on:
push:
branches:
- master
pull_request: {}
jobs:
test:
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", "macOS-latest", "windows-latest"]
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }}
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.7"
- name: Install Dependencies
run: |
python -m pip install --upgrade pip pytest
- name: Install UnityPy
run: |
pip install .
- name: Run tests
run: |
pytest -v -s