-
Notifications
You must be signed in to change notification settings - Fork 210
Update GitHub with Gitlab main #3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
b105eb9
copy over nemo gym infra
bxyu-nvidia 06977ad
copy over servers qand tests
bxyu-nvidia be624e4
copy over cache and data
bxyu-nvidia 25ed9e4
copy over resources and top level files
bxyu-nvidia 023606c
revert gitignore removals
bxyu-nvidia b854b76
add back package info import
bxyu-nvidia b53535c
add copyright
bxyu-nvidia 186f0df
fix secrets
bxyu-nvidia 72f5642
add snippet
bxyu-nvidia 1ebb18f
add secret allow
bxyu-nvidia dba0470
try sign with privkey
bxyu-nvidia 738ae7a
add clone command sggestion to readme
bxyu-nvidia 185a9ae
remove faq
bxyu-nvidia 2825e86
add back docs
bxyu-nvidia 8a8715d
add precommit and mypy
bxyu-nvidia 84039d7
merge pyproject toml
bxyu-nvidia 0478f75
add precommit doc
bxyu-nvidia d241319
update uv lock
bxyu-nvidia 48b447d
lint
bxyu-nvidia c04ca93
add unit tests
bxyu-nvidia a3d9ab5
fix sudo
bxyu-nvidia c0897f4
try no source
bxyu-nvidia 52f4824
activate
bxyu-nvidia dbb6583
fix pyproject.toml coverage config; fix tests pathing
bxyu-nvidia 8c8bfa9
un-gitignore uv.lock since it's already tracked and we want to track it
bxyu-nvidia File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,54 @@ | ||
| # Copyright (c) 2025, NVIDIA CORPORATION. All rights reserved. | ||
| # | ||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||
| # you may not use this file except in compliance with the License. | ||
| # You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
| name: Unit tests | ||
|
|
||
| on: | ||
| pull_request: | ||
| types: [opened, synchronize, reopened, labeled, unlabeled] | ||
| workflow_call: | ||
|
|
||
| jobs: | ||
| test: | ||
| name: Test | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| submodules: 'recursive' | ||
|
|
||
| - name: Fail on draft PRs | ||
| if: github.event.pull_request.draft == true | ||
| run: | | ||
| echo "Failing on draft PR to enforce this check to run" | ||
| exit 1 | ||
|
|
||
| - name: Setup for test | ||
| run: | | ||
| sudo apt-get update | ||
| # Curl is required for setup_nvidia.sh to download uv | ||
| # ca-certificates is there to support curl and mitigate `curl: (77) error setting certificate file: /etc/ssl/certs/ca-certificates.crt` | ||
| sudo apt-get install -y --no-install-recommends git curl ca-certificates | ||
| # The flow below should be used and synced with any Docker or container related flows. There is no script here to keep it 100% explicit. | ||
| # This is how we test and this is how you should use/consume. | ||
| curl -LsSf https://astral.sh/uv/install.sh | sh | ||
| uv venv --python 3.12 | ||
| source .venv/bin/activate | ||
| uv sync --extra dev | ||
|
|
||
| - name: Test | ||
| run: | | ||
| source .venv/bin/activate | ||
| ng_dev_test | ||
| ng_test_all +fail_on_total_and_test_mismatch=true | ||
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.