Skip to content

Commit

Permalink
remove github actions pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
yudhiesh authored and yudhiesh committed Aug 28, 2024
1 parent a9618bb commit a952d0d
Showing 1 changed file with 1 addition and 42 deletions.
43 changes: 1 addition & 42 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
@@ -1,42 +1 @@
name: Test Ray Serve API

on:
pull_request:
push:
branches:
- main

jobs:
actionlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Download actionlint
run: bash <(curl -s https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash) 1.6.21
shell: bash
- name: Check workflow files
run: ./actionlint
shell: bash
tests:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./project
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/python-poetry-env
with:
python-version: "3.10"
- run: poetry run tox
env:
WANDB_API_KEY: ${{ secrets.WANDB_API_KEY }}

pre-commit:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./project
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/python-poetry-env
- run: poetry run pre-commit run --all-files
# TODO: Add in Pull Request pipeline here!

0 comments on commit a952d0d

Please sign in to comment.