-
Notifications
You must be signed in to change notification settings - Fork 18
44 lines (35 loc) · 1015 Bytes
/
build.yml
File metadata and controls
44 lines (35 loc) · 1015 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
43
44
name: "🧪 Build & test code"
permissions:
contents: read
on:
workflow_dispatch:
workflow_call:
jobs:
build:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11"]
os: [windows-latest, ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Install required Linux library for pykerberos
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update && sudo apt-get install libkrb5-dev
- name: Install Poetry
run: |
pipx install poetry
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: ${{matrix.python-version}}
cache: "poetry"
- name: Check pyproject.toml validity
run: poetry check --no-interaction
- name: Install deps
run: poetry install --no-interaction
- name: Run tests
run: poetry run pytest