Skip to content

Commit

Permalink
add workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
gnarargs committed Aug 17, 2023
1 parent ce1f037 commit e05a360
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Test github workspace value

on: push

jobs:
with-checkout:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Print workspace path
run: echo $GITHUB_WORKSPACE
without-checkout:
runs-on: ubuntu-latest
steps:
- name: Print workspace path
run: echo $GITHUB_WORKSPACE

0 comments on commit e05a360

Please sign in to comment.