Skip to content

Remove unwanted logging #31

Remove unwanted logging

Remove unwanted logging #31

Workflow file for this run

name: Tests and formatters
on:
- push
jobs:
code-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v17
with:
nix_path: nixpkgs=channel:nixos-unstable
- run: nix develop -c python -m unittest
- run: nix develop -c ruff check .
readme-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: docker://pandoc/core:2.17
with:
args: >-
--columns=80
--standalone
--from=gfm
--to=gfm
--output=README.pan.md
README.md
- name: Compare README.md with its regenerated version
run: diff README.md README.pan.md