Skip to content

feat: s2s auto metadata (#777) #3534

feat: s2s auto metadata (#777)

feat: s2s auto metadata (#777) #3534

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize]
jobs:
test:
runs-on: galileo
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: set up python
uses: actions/setup-python@v4
with:
cache: "pip"
cache-dependency-path: "pyproject.toml"
python-version: ${{ matrix.python-version }}
- name: install invoke
run: pip install invoke
- name: install dependencies
run: inv install --no-editable
- name: lint
run: inv lint
- name: test
run: inv test
- name: upload coverage
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos