pass ssl_public_key settings into pinger to support self-signed cert TLS #219
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: [pull_request, workflow_dispatch] | |
jobs: | |
check3: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: ["ubuntu-22.04", "ubuntu-20.04"] | |
steps: | |
- uses: actions/checkout@v2 | |
- run: | | |
make depends | |
# -common seems a catch-22, but this is just a shortcut to | |
# initialize user and dirs, some used through tests. | |
sudo apt-get -y install landscape-common | |
- run: make check3 TRIAL=/usr/bin/trial3 | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: make depends | |
- run: make lint | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: | | |
make depends | |
# -common seems a catch-22, but this is just a shortcut to | |
# initialize user and dirs, some used through tests. | |
sudo apt-get -y install landscape-common | |
- run: make coverage TRIAL=/usr/bin/trial3 | |
- name: upload | |
uses: codecov/codecov-action@v1 |