Skip to content

Bump black from 19.10b0 to 24.3.0 #23

Bump black from 19.10b0 to 24.3.0

Bump black from 19.10b0 to 24.3.0 #23

Workflow file for this run

---
name: Test
on:
pull_request: {}
push:
branches: main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies with poetry
run: |
pip install poetry
poetry install
- run: poetry run isort --recursive --diff
- run: poetry run black --check .
- run: poetry run flake8
- run: poetry run mypy
- run: poetry run pytest --cov --cov-fail-under=75
docker-image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build docker image
run: docker build . -t yaml2jsonnet:test
- name: Smoke test docker image
run: |
docker run --rm yaml2jsonnet:test