Skip to content

Update std.copy docs #11

Update std.copy docs

Update std.copy docs #11

Workflow file for this run

name: test
on:
push:
branches:
- master
pull_request:
permissions:
contents: read
jobs:
test:
runs-on: windows-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install poetry
run: |
pip install -U pip
pip install poetry
- name: Install dependencies
run: poetry install
- name: Run tests
run: poetry run coverage run -m pytest tests
- name: Install types
run: poetry add types-PyYAML types-requests
- name: Check MyPy
run: poetry run mypy embark
- name: Check Ruff
run: poetry run ruff check
- name: Check WPS
run: poetry run flake8 embark tests
- name: Check imports
run: poetry run lint-imports
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: Tapeline/Embark