-
Notifications
You must be signed in to change notification settings - Fork 20
31 lines (31 loc) · 970 Bytes
/
build.yml
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
name: "build"
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python: [python27, python39, python310, python311]
docutils: [docutils016, docutils017, docutils018, docutils019, docutils020]
exclude:
- python: python27
docutils: docutils018
- python: python27
docutils: docutils019
- python: python27
docutils: docutils020
env:
COVERALLS_REPO_TOKEN: ${{ secrets.github_token }}
COVERALLS_SERVICE_NAME: github
steps:
- uses: actions/checkout@v4.1.1
- uses: cachix/install-nix-action@v25
with:
nix_path: nixpkgs=channel:nixos-unstable
- uses: cachix/cachix-action@v14
with:
name: datakurre
# authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'j
- run: make nix-show nix-test nix-coverage nix-coveralls nix-docs PYTHON=${{ matrix.python }} FEATURE=${{ matrix.docutils }}