mirror of https://github.com/OpenKMIP/PyKMIP.git
27 lines
710 B
YAML
27 lines
710 B
YAML
name: ".travis.yml"
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ${{ matrix.os }}
|
|
env:
|
|
TOXENV: ${{ matrix.test }}
|
|
RUN_INTEGRATION_TESTS: ${{ matrix.test_number}}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: pip install "tox"
|
|
- run: pip install bandit
|
|
- run: pip install codecov
|
|
- run: pip install slugs
|
|
- run: ./.travis/run.sh
|
|
- run: codecov
|
|
strategy:
|
|
matrix:
|
|
test: ["py310", "pep8", "bandit", "docs"]
|
|
test_number: ["0"]
|
|
os: [ubuntu-22.04] |