File tree Expand file tree Collapse file tree 2 files changed +13
-8
lines changed Expand file tree Collapse file tree 2 files changed +13
-8
lines changed Original file line number Diff line number Diff line change @@ -26,11 +26,13 @@ jobs:
2626 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
2727
2828 steps :
29- - uses : actions/checkout@v3.0.2
29+ - name : Checkout code
30+ uses : actions/checkout@v3.0.2
3031 # See https://github.com/actions/checkout/issues/118.
3132 with :
3233 fetch-depth : 0
33- - uses : Bogdanp/setup-racket@v1.8.1
34+ - name : Install Racket
35+ uses : Bogdanp/setup-racket@v1.8.1
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/upload-artifact@v3.1.0
51+ uses : actions/upload-artifact@v3.1.0
5052 with :
5153 name : resyntax-review
5254 path : resyntax-review.json
Original file line number Diff line number Diff line change @@ -19,11 +19,14 @@ jobs:
1919 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
2020
2121 steps :
22- - uses : actions/checkout@v3.0.2
23- - uses : actions/download-artifact@v3.0.0
22+ - name : Checkout code
23+ uses : actions/checkout@v3.0.2
24+ - name : Download Resyntax analysis
25+ uses : actions/download-artifact@v3.0.0
2426 with :
2527 name : resyntax-review
26- - uses : actions/github-script@6.1.0
28+ - name : Create pull request review
29+ uses : actions/github-script@v6.1.0
2730 with :
2831 github-token : ${{ secrets.GITHUB_TOKEN }}
2932 script : |
You can’t perform that action at this time.
0 commit comments