Skip to content

Commit

Permalink
include pip install when using dev containers
Browse files Browse the repository at this point in the history
  • Loading branch information
ChenglimEar committed Oct 31, 2023
1 parent bf923d8 commit 49abac2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .devcontainer/post-action-command.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash

.devcontainer/post-create-command.sh

python test_pull_from_gdrive.py
5 changes: 3 additions & 2 deletions .github/workflows/verify-gdrive.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@ jobs:
GDRIVE_FOLDER: ${{ vars.GDRIVE_FOLDER }}
steps:
- uses: actions/checkout@v3
- name: Build dev container
uses: ./.devcontainer
- name: Test pull from gdrive
uses: ./.devcontainer
with:
entrypoint: python
args: test_pull_from_gdrive.py
entrypoint: ./.devcontainer/post-action-command.sh
- name: Archive pulled files
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 49abac2

Please sign in to comment.