Skip to content

fix(Randimals): remove raccoon #50

fix(Randimals): remove raccoon

fix(Randimals): remove raccoon #50

Workflow file for this run

name: Compile & Lint
on:
- push
- pull_request
jobs:
build:
name: Compile & Lint
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
python:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Compile
run: |
python -m compileall .
- name: Lint
uses: psf/black@stable
with:
options: "--check --verbose"
src: "."