-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update action.yml and static_type_checks.yml
- Loading branch information
1 parent
76c2858
commit d39a00d
Showing
1 changed file
with
10 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,15 +16,15 @@ jobs: | |
steps: | ||
- name: Checkout (GitHub) | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up uv | ||
shell: bash | ||
run: curl -LsSf https://astral.sh/uv/0.4.0/install.sh | sh | ||
|
||
- name: Create github hosts file | ||
run: | ||
| # If this file is not created, the dev container fails because of non-existent mount | ||
mkdir -p ~/.config/gh | ||
touch ~/.config/gh/hosts.yml | ||
- name: Set up Python | ||
shell: bash | ||
run: uv python install | ||
|
||
- name: Pre-build dev container image | ||
uses: devcontainers/[email protected] | ||
with: | ||
runCmd: | | ||
make types | ||
- name: Run static type checks | ||
shell: bash | ||
run: make types |