Datasets:

results / .github /workflows /test.yml
Samoed's picture
change CI to use git repo instead pypi (#409)
1580ccf unverified
raw
history blame
1.09 kB
# This workflow will:
# 1) install Python dependencies
# 2) run make test
name: Test
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest] #, macos-latest, windows-latest]
python-version: ["3.10"]
steps:
- name: Free disk space
run: |
sudo rm -rf /usr/share/dotnet
sudo rm -rf /opt/ghc
sudo rm -rf /usr/local/share/boost
docker system prune -af
- uses: actions/checkout@v3
with:
fetch-depth: 0 # to allow us to examine the git diff
- name: Install uv and set the Python ${{ matrix.python-version }} version
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
shell: bash
run: |
make install-for-tests
- name: Run tests
shell: bash
env:
PR_BASE_SHA: ${{ github.event.pull_request.base.sha }}
run: |
make test