Fix openai (#88) #84
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rusty Check | |
on: | |
pull_request: {} | |
push: | |
branches: [main] | |
permissions: read-all | |
jobs: | |
check: | |
name: Check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
fetch-depth: 2 | |
- run: echo "$(pwd)/bin" >> $GITHUB_PATH | |
- uses: actions/setup-node@v4 | |
- run: npm install --prefix tool/stylelint/test_data | |
- run: tk check --upstream=HEAD^1 | |
# Print the server log | |
- run: cat $(tk paths | jq -r .server_stderr_file) |