forked from pythonarcade/arcade
-
Notifications
You must be signed in to change notification settings - Fork 2
42 lines (36 loc) · 934 Bytes
/
test.yml
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
41
42
name: GitHub Ubuntu test
on:
push:
branches: [development, maintenance]
pull_request:
branches: [development, maintenance]
workflow_dispatch:
jobs:
build:
name: test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.7', '3.8', '3.9', '3.10']
architecture: ['x64']
steps:
- uses: actions/checkout@v2
- name: setup
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.architecture }}
- name: dependencies
run: |
python -m pip install -U pip wheel setuptools
- name: wheel
run: |
python -m pip install -e .[dev]
- name: code-inspection
run: |
mypy arcade
flake8 arcade
- name: build-docs
run: |
sphinx-build doc build -W