Bump version to v1.1.0 #104
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: TraceML | |
on: | |
push: | |
branches: | |
- master | |
- testing | |
jobs: | |
library: | |
# if: github.event.comment.body == 'test core' | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.8, 3.9, '3.10', '3.11'] | |
steps: | |
- run: | | |
pip install -U traceml | |
tests: | |
# if: github.event.comment.body == 'test core' | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.8, 3.9, '3.10', '3.11'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Upgrade pip | |
run: | | |
which python | |
python -m pip install --upgrade pip | |
- name: Install test dependencies | |
run: pip install -r traceml/requirements/test.txt | |
- name: Install master dependencies | |
run: pip install -r traceml/requirements/master.txt | |
- name: Install dev libraries | |
run: export USE_LOCAL_PACKAGES="true" && pip install --upgrade --editable "traceml[dev]" | |
- name: Test with pytest | |
run: | | |
cd traceml | |
pytest -vv |