File: ci.yaml

package info (click to toggle)
ghp-import 2.1.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, trixie
  • size: 180 kB
  • sloc: python: 329; makefile: 20
file content (21 lines) | stat: -rw-r--r-- 472 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
name: CI

on: [pull_request]

jobs:
  ci:
    runs-on: ${{ matrix.os }}-latest
    strategy:
      matrix:
        python-version: ['2.7', '3.9']
        os: [ubuntu, windows, macos]
        opts: ['--shell', '']

    steps:
      - uses: actions/checkout@v2
      - uses: actions/setup-python@v2
        with:
          python-version: ${{ matrix.python-version }}
      - run: make install
      - run: make lint
      - run: make -e DOCS_OPTS="${{ matrix.opts }}" docs