From ca314f8f742bfc1d9bde68a9838e4500c125bd50 Mon Sep 17 00:00:00 2001 From: Tony Wu <28306721+tonywu71@users.noreply.github.com> Date: Tue, 17 Sep 2024 13:54:29 +0200 Subject: [PATCH] build: add "Test" github action --- .github/workflows/test.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..a0e257a --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,33 @@ +name: Test (non-slow only) + +on: + push: + branches: + - main + pull_request: + +jobs: + test: + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.9", "3.10", "3.11", "3.12"] + + steps: + - uses: actions/checkout@v4 + + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -e ".[dev]" + + - name: Run tests with pytest (except "slow" tests) + run: | + pytest -m "not slow" + env: + HF_TOKEN: ${{ secrets.HF_TOKEN }}