Skip to content

Commit 6ffb575

Browse files
authored
Fix Resyntax workflows (#1260)
Fix typos in Resyntax workflows.
1 parent f83137d commit 6ffb575

File tree

2 files changed

+13
-8
lines changed

2 files changed

+13
-8
lines changed

.github/workflows/resyntax-analyze.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,13 @@ jobs:
2626
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2727

2828
steps:
29-
- uses: actions/[email protected]
29+
- name: Checkout code
30+
uses: actions/[email protected]
3031
# See https://github.com/actions/checkout/issues/118.
3132
with:
3233
fetch-depth: 0
33-
- uses: Bogdanp/[email protected]
34+
- name: Install Racket
35+
uses: Bogdanp/[email protected]
3436
with:
3537
version: current
3638
packages: resyntax
@@ -42,11 +44,11 @@ jobs:
4244
raco pkg install -i --auto --no-setup --skip-installed typed-racket-test
4345
raco pkg update --auto --no-setup source-syntax typed-racket-lib typed-racket-more typed-racket-compatibility typed-racket-doc typed-racket typed-racket-test
4446
- name: Install local packages
45-
- run: raco setup typed typed-racket typed-racket-test typed-scheme
47+
run: raco setup typed typed-racket typed-racket-test typed-scheme
4648
- name: Analyze changed files
47-
- run: xvfb-run racket -l- resyntax/cli analyze --local-git-repository . "origin/${GITHUB_BASE_REF}" --output-as-github-review >> ./resyntax-review.json
49+
run: xvfb-run racket -l- resyntax/cli analyze --local-git-repository . "origin/${GITHUB_BASE_REF}" --output-as-github-review >> ./resyntax-review.json
4850
- name: Upload analysis artifact
49-
- uses: actions/[email protected]
51+
uses: actions/[email protected]
5052
with:
5153
name: resyntax-review
5254
path: resyntax-review.json

.github/workflows/resyntax-submit-review.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,14 @@ jobs:
1919
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2020

2121
steps:
22-
- uses: actions/[email protected]
23-
- uses: actions/[email protected]
22+
- name: Checkout code
23+
uses: actions/[email protected]
24+
- name: Download Resyntax analysis
25+
uses: actions/[email protected]
2426
with:
2527
name: resyntax-review
26-
- uses: actions/[email protected]
28+
- name: Create pull request review
29+
uses: actions/[email protected]
2730
with:
2831
github-token: ${{ secrets.GITHUB_TOKEN }}
2932
script: |

0 commit comments

Comments
 (0)