Skip to content

Commit

Permalink
Update tests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
p-samuel authored Nov 23, 2023
1 parent 3c9828f commit 3195489
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2

- name: Install Docker
run: |
Invoke-WebRequest -Uri https://desktop.docker.com/win/stable/Docker%20Desktop%20Installer.exe -OutFile DockerDesktopInstaller.exe
Start-Process -Wait -FilePath .\DockerDesktopInstaller.exe -ArgumentList '/quiet', '/norestart'
- name: Copy Configuration to ntfy
run: |
# Adjust this command based on the actual location of your configuration file
Expand All @@ -21,7 +26,7 @@ jobs:
- name: Start Docker Container
run: |
# Adjust this command based on the actual container start command
Start-Process -FilePath "docker" -ArgumentList "start", "ntfy"
Start-Process -Wait -FilePath "docker" -ArgumentList "start", "ntfy"
- name: Run Windows Executable
id: run-exe
Expand Down

0 comments on commit 3195489

Please sign in to comment.