Skip to content

Training torchtitan #327

Training torchtitan

Training torchtitan #327

Workflow file for this run

name: CI
on:
pull_request:
types: [opened, synchronize, reopened]
branches: ['*']
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Run make test
run: make test
- name: Upload test results
if: always()
uses: actions/upload-artifact@v4
with:
name: test-results
path: |
*.log
.coverage
retention-days: 2