Skip to content

chore: swap travis for github actions #2

chore: swap travis for github actions

chore: swap travis for github actions #2

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Requirements
run: pip install -r requirements.frozen.txt
- name: Install Deps
run: pip install wheel
run: pip install codecov

Check failure on line 23 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / Test

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 23, Col: 9): 'run' is already defined
- name: Run Tests
run: python -m pytest --cov=hermit --cov-config=tests/.coveragerc --ignore=vendor
- name: Coverage
run: codecov