remove arch settings #29
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 Tests | |
on: push | |
jobs: | |
molecule: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
path: "${{ github.repository }}" | |
- name: Run molecule tests for atuin_client role | |
uses: gofrolist/molecule-action@v2 | |
with: | |
molecule_working_dir: ${{ github.repository }}/roles/atuin_client | |
molecule_args: --scenario-name docker --driver-name docker | |
env: | |
ANSIBLE_FORCE_COLOR: '1' | |
- name: Run molecule tests for atuin_server role | |
uses: gofrolist/molecule-action@v2 | |
with: | |
molecule_working_dir: ${{ github.repository }}/roles/atuin_server | |
molecule_args: --scenario-name default --driver-name docker | |
env: | |
ANSIBLE_FORCE_COLOR: '1' |