Satyaog/feature/covalent #554
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: unit | |
on: | |
push: | |
# Runs for pull requests | |
pull_request: | |
branches: | |
- master | |
# Runs on publish | |
release: | |
types: | |
[published] | |
# Allow manual triggers | |
workflow_dispatch: | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
# Cancel previous jobs if a new version was pushed | |
concurrency: | |
group: "${{ github.ref }}-${{ matrix.arch }}" | |
cancel-in-progress: true | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: dependencies | |
run: | | |
pip install -U pip | |
pip install poetry | |
poetry env use python3.10 | |
source $(poetry env info -p)/bin/activate | |
# | |
# poetry doesnot work when installing those !? | |
# | |
pip install antlr4-python3-runtime==4.9.3 | |
pip install -e . | |
pip install -e benchmate | |
# | |
# | |
# | |
poetry install --with dev | |
- name: Simple Template | |
run: | | |
source $(poetry env info -p)/bin/activate | |
milabench new --name simplebench --template simple | |
cd benchmarks/simplebench | |
make tests | |
cd .. | |
rm -rf simplebench | |
- name: Voir Template | |
run: | | |
source $(poetry env info -p)/bin/activate | |
milabench new --name voirbench --template voir | |
cd benchmarks/voirbench | |
make tests | |
cd .. | |
rm -rf voirbench | |
- name: space | |
run: | | |
df -h | |
- name: tests | |
env: | |
MILABENCH_HF_TOKEN: ${{ secrets.HUGGING_FACE_TOKEN}} | |
run: | | |
source $(poetry env info -p)/bin/activate | |
coverage run --source=milabench -m pytest --ignore=tests/integration tests/ | |
coverage report -m | |
coverage xml | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
file: ./coverage.xml | |
flags: unittests | |
env_vars: PLATFORM,PYTHON | |
name: codecov-umbrella | |
fail_ci_if_error: false | |
token: ${{ secrets.CODECOV_TOKEN }} |