-
Notifications
You must be signed in to change notification settings - Fork 26
36 lines (34 loc) · 975 Bytes
/
build.yml
File metadata and controls
36 lines (34 loc) · 975 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
# name: build
# on:
# push: ~
# pull_request: ~
# workflow_dispatch: ~
# jobs:
# lint:
# runs-on: ubuntu-latest
# steps:
# - uses: justintime50/composite-actions/bootstrap-python@v1
# with:
# python-version: '3.14'
# - run: just install lint
# test:
# runs-on: ubuntu-latest
# strategy:
# matrix:
# pythonversion: ['3.10', '3.11', '3.12', '3.13', '3.14']
# steps:
# - uses: justintime50/composite-actions/bootstrap-python@v1
# with:
# python-version: ${{ matrix.pythonversion }}
# - run: just install coverage
# coverage:
# if: github.ref == 'refs/heads/main'
# runs-on: ubuntu-latest
# steps:
# - uses: justintime50/composite-actions/bootstrap-python@v1
# with:
# python-version: '3.14'
# - run: just install coverage
# - uses: codecov/codecov-action@v5
# with:
# token: ${{ secrets.CODECOV_TOKEN }}