Add service and service monitor for forwarder #7215
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: Test Poetry lock file | |
on: | |
- push | |
- pull_request | |
jobs: | |
run_tests: | |
name: Test lock file | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Run poetry lock | |
run: | | |
curl -sSL https://install.python-poetry.org | python3 - | |
poetry lock --check |