Skip to content

Commit

Permalink
updated github actions workflow: added direnv setup, pipenv installat…
Browse files Browse the repository at this point in the history
…ion and modified test run command
  • Loading branch information
andreygubarev committed May 10, 2024
1 parent 53f02ce commit 717cba4
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ansible-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,23 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set up direnv
uses: andreygubarev/direnv-action@v1

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'

- name: Install pipenv
run: pip install pipenv

- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -yq --no-install-recommends mkisofs qemu-system-x86 qemu-utils
- name: Run test
run: make test-platform-amd64
run: |
direnv allow .
direnv exec . make test-platform-amd64

0 comments on commit 717cba4

Please sign in to comment.