-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
internal/ci: run pytest and mypy in CI
Run the tests and the type-checker in CI. Signed-off-by: Aram Hăvărneanu <[email protected]> Change-Id: Id95c7ef3d3abd3ed3e9a22c8b9da82f8caea10fa Reviewed-on: https://review.gerrithub.io/c/cue-lang/cue-py/+/1195427 TryBot-Result: CUEcueckoo <[email protected]> Reviewed-by: Daniel Martí <[email protected]>
- Loading branch information
Showing
4 changed files
with
176 additions
and
18 deletions.
There are no files selected for viewing
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,5 +17,11 @@ botGitHubUserEmail: "[email protected]" | |
defaultBranch: "main" | ||
|
||
linuxMachine: "ubuntu-22.04" | ||
linuxMachine: "ubuntu-22.04" | ||
macosMachine: "macos-14" | ||
windowsMachine: "windows-2022" | ||
|
||
latestGo: "1.22.x" | ||
// libcue requires Go 1.22+, so we can't test on any earlier version. | ||
latestStableGo: "1.22.x" | ||
|
||
latestStablePython: "3.12" |