-
Notifications
You must be signed in to change notification settings - Fork 10
32 lines (32 loc) · 877 Bytes
/
ci.yml
File metadata and controls
32 lines (32 loc) · 877 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
# SPDX-PackageName: 2ping
# SPDX-PackageSupplier: Ryan Finnie <ryan@finnie.org>
# SPDX-PackageDownloadLocation: https://github.com/rfinnie/2ping
# SPDX-FileCopyrightText: © 2010 Ryan Finnie <ryan@finnie.org>
# SPDX-License-Identifier: MPL-2.0
---
name: "ci"
"on": ["push", "pull_request"]
jobs:
build:
runs-on: "${{ matrix.os }}"
strategy:
matrix:
os:
- "macos-latest"
- "ubuntu-latest"
- "windows-latest"
python-version:
- "3.10"
- "3.12"
steps:
- uses: "actions/checkout@v4"
- name: "Python ${{ matrix.python-version }}"
uses: "actions/setup-python@v5"
with:
python-version: "${{ matrix.python-version }}"
- name: "Python dependencies"
run: |
python -mpip install tox
- name: "tox"
run: |
python -mtox