forked from techtonik/python-patch
-
Notifications
You must be signed in to change notification settings - Fork 10
42 lines (36 loc) · 856 Bytes
/
workflow.yml
File metadata and controls
42 lines (36 loc) · 856 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
41
42
name: Python Patch-NG Tests
on:
push:
paths-ignore:
- 'doc/**'
- '**/*.md'
- 'LICENSE'
- 'example/**'
- '.gitignore'
workflow_dispatch:
pull_request:
paths-ignore:
- 'doc/**'
- '**/*.md'
- 'LICENSE'
- 'example/**'
- '.gitignore'
jobs:
validate:
name: Validate on Linux - Python ${{ matrix.python }}
strategy:
matrix:
python: [ '3.8', '3.12' ]
os: [ 'ubuntu-22.04', 'windows-latest' ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- name: Setup python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python }}
architecture: x64
- name: Install patch_ng
run: pip install .
- name: Run tests
run: python tests/run_tests.py