From 809bf70e507575560b46a8c1605f005aad69fc4b Mon Sep 17 00:00:00 2001 From: yuzhenglin <123648215+yuzhenglin@users.noreply.github.com> Date: Wed, 31 Jul 2024 13:17:46 -0400 Subject: [PATCH] fix typo, add more actions --- .github/workflows/ci.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index deeea08..2bd9c0c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,3 +1,4 @@ +name: Our CI on: pull_request: push: @@ -5,6 +6,15 @@ on: jobs: test: + name: Run tests runs-on:ubuntu-latest - step: + steps: - run: echo Hello World + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: "3.11" + -run: python -m pip install .[test] + -name: Run test + -run: python -m pytest +