Skip to content

Commit

Permalink
ci: revise main dump (#1624)
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekRoberts authored Nov 20, 2023
1 parent 5a4eaf5 commit 0b25f69
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: GitHub context
run: echo "${{ toJson(github) }}"
run: echo "${{ toJson(github) }}" || true

- name: Job context
run: echo "${{ toJson(job) }}"
run: echo "${{ toJson(job) }}" || true

- name: Steps context
run: echo "${{ toJson(steps) }}"
run: echo "${{ toJson(steps) }}" || true

- name: Runner context
run: echo "${{ toJson(runner) }}"
run: echo "${{ toJson(runner) }}" || true

- name: Strategy context
run: echo "${{ toJson(strategy) }}"
run: echo "${{ toJson(strategy) }}" || true

0 comments on commit 0b25f69

Please sign in to comment.