Skip to content

chore: add pr configs #2

chore: add pr configs

chore: add pr configs #2

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
merge_group:
branches: [ main ]
permissions:
id-token: write
contents: read
jobs:
# setup:
# strategy:
# matrix:
# python-version: ["3.9","3.10","3.11"]
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - uses: ./.github/actions/base-cache
# with:
# python-version: ${{ matrix.python-version }}
# check-only: 'true'
test_unit:
strategy:
matrix:
python-version: ["3.9","3.10","3.11"]
runs-on: ubuntu-latest
# needs: [setup]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: make install-test
- name: Run unit tests
run: |
make test