-
-
Notifications
You must be signed in to change notification settings - Fork 0
24 lines (24 loc) · 621 Bytes
/
build.yml
File metadata and controls
24 lines (24 loc) · 621 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
name: build
on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: "ubuntu-24.04"
python-version: "3.12"
steps:
- name: checkout
uses: actions/checkout@v4
- name: python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: bootstrap-pip
run: python -m pip install --upgrade pip
- name: bootstrap
run: python -m pip install pydmt
- name: pydmt
run: pydmt build