Skip to content

Commit

Permalink
Add ci
Browse files Browse the repository at this point in the history
  • Loading branch information
xsuler committed Feb 5, 2025
1 parent 7df109d commit 2846a8f
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: CI
on: [push, pull_request]

jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up environment
run: |
sudo apt-get update
./ci/env/install-miniconda.sh
./ci/env/install-bazel.sh
pip install -r python/requirements.txt
- name: Run core tests
run: |
./ci/ci.sh test_core
./ci/ci.sh test_python
- name: Run C++ tests
run: ./ci/ci.sh test_cpp

- name: Run wheel tests
run: ./ci/ci.sh test_wheels

- name: Upload test artifacts
if: always()
uses: actions/upload-artifact@v4
with:
name: test-results
path: |
/tmp/artifacts/test-summaries/*
/tmp/ray/session_latest/logs/*

0 comments on commit 2846a8f

Please sign in to comment.