Skip to content

Add config option [source] -> tar_options #137

Add config option [source] -> tar_options

Add config option [source] -> tar_options #137

Workflow file for this run

---
name: "Tests"
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
build:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v3"
- name: "Setup Python env"
uses: "actions/setup-python@v2"
with:
python-version: 3.9
- name: "Run tests"
run: |
pip install -U "pip ~= 23.0.0"
python -m venv ~/.env
source ~/.env/bin/activate
make bootstrap lint test
- name: "Upload coverage to Codecov"
uses: "codecov/codecov-action@v3"
with:
fail_ci_if_error: true
verbose: true
...