Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
lwj-st committed Jun 12, 2024
1 parent 17ba10a commit 2139769
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,20 +31,22 @@ jobs:
mkdir -p ${{ env.CI_PATH }}
- name: Move code to custom directory
run: mv $GITHUB_WORKSPACE/* ${{ env.CI_PATH }}/
run: |
set -ex
mv $GITHUB_WORKSPACE/* ${{ env.CI_PATH }}/
test:
Test:
runs-on: tps_sco_nv
needs: [Clone]
steps:
- name: test1
run: |
pwd
ls
whoami
set -ex
cd ${{ env.CI_PATH }}
echo "Placeholder only"
- name: test2
run: |
cd ${{ env.CI_PATH }}
which python
pip list --format=freeze
echo "Placeholder only"

0 comments on commit 2139769

Please sign in to comment.