feat(checks): change how connect_port works #479
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: Molecule Test | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 2 | |
matrix: | |
ansible: ["2.10", "latest"] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: | | |
sudo apt remove ansible | |
sudo apt install tox | |
- name: Test with molecule using tox | |
run: | | |
sudo -H -E tox -e ansible-${{ matrix.ansible }} |