Skip to content
This repository has been archived by the owner on Nov 21, 2023. It is now read-only.

Update README.md

Update README.md #13

Workflow file for this run

name: Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies & our package
run: |
python -m pip install --upgrade pip
python -m pip install -r dev-requirements.txt
python -m pip install -e .
- name: Test with pytest
run: |
pytest -vvv -s --cov=meta_yaml_schema
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v2