Skip to content

Commit

Permalink
Add smoke test in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jakebailey committed Feb 27, 2024
1 parent ea696b1 commit 46ce6ef
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,3 +87,13 @@ jobs:

- run: npm ci
- run: npx dprint check

smoke-test:
name: Smoke Test
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: ./
with:
working-directory: ./smoke-test
7 changes: 7 additions & 0 deletions smoke-test/pyrightconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"$schema": "https://raw.githubusercontent.com/microsoft/pyright/main/packages/vscode-pyright/schemas/pyrightconfig.schema.json",
"include": [
"test.py"
],
"typeCheckingMode": "strict"
}
1 change: 1 addition & 0 deletions smoke-test/test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
print("okay")

0 comments on commit 46ce6ef

Please sign in to comment.