chore: Move project to org mila-iqia #28
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 unit testing | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
molecule: | |
name: Molecule test | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
scenario: | |
- default | |
- ovs | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Run Molecule | |
uses: gofrolist/molecule-action@v2 | |
with: | |
molecule_args: --scenario-name ${{ matrix.scenario }} |