Skip to content

cleanup

cleanup #22

Workflow file for this run

name: check
on:
push:
branches:
- main
- master
pull_request:
jobs:
check:
runs-on: self-hosted
container:
image: python:latest
steps:
- name: Set up Git repository
uses: actions/checkout@v3
- name: Hack container for local development
if: ${{ env.ACT }}
run: apt-get update && apt install -y nodejs
- name: Execute Pre-commit Hooks
uses: pre-commit/action@v3.0.0