Bump to net8 (#24)

This commit is contained in:
Patrick Stevens
2024-01-28 23:56:18 +00:00
committed by GitHub
parent a2c79d0df0
commit 6d6c107f67
8 changed files with 15 additions and 15 deletions

View File

@@ -3,9 +3,9 @@
import subprocess
def check_fantomas():
result = subprocess.run(["dotnet", "tool", "run", "fantomas", "--check", "-r", "."])
result = subprocess.run(["dotnet", "tool", "run", "fantomas", "--check", "."])
if result.returncode != 0:
raise Exception(f"Formatting incomplete (return code: {result.returncode}). Consider running `dotnet tool run fantomas -r .`")
raise Exception(f"Formatting incomplete (return code: {result.returncode}). Consider running `dotnet tool run fantomas .`")
def main():