Support SkyPilot Storage configurations in file_mounts
for automatic cloud sync
#658
Workflow file for this run
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
name: Run tests | |
on: | |
workflow_dispatch: | |
workflow_call: | |
push: | |
branches: [main] | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install the latest version of uv | |
uses: astral-sh/setup-uv@v3 | |
with: | |
version: "latest" | |
- name: uv sync | |
run: uv sync --extra skypilot | |
- shell: bash | |
run: | | |
git config --global user.name github-actions[bot] | |
git config --global user.email 41898282+github-actions[bot]@users.noreply.github.com | |
- name: Run coverage | |
run: | | |
uv run -- coverage run --branch --source=nemo_run -a -m pytest | |
uv run -- coverage report -m | |
- name: Run example notebooks | |
run: | | |
uv run -- coverage run --branch --source=nemo_run -a -m jupyter execute examples/**/*.ipynb | |
uv run -- coverage report -m | |
- name: Run example scripts | |
run: | | |
uv run -- coverage run --branch --source=nemo_run -a examples/hello-world/hello_scripts.py | |
uv run -- coverage report -m | |
- name: Generate report | |
run: | | |
uv run -- coverage xml | |
uv run -- coverage report | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v5 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: coverage.xml | |
verbose: true | |
flags: cpu |