From d0953b74dd1aeb814359669f980452a2b14adeec Mon Sep 17 00:00:00 2001 From: Rapha <25059996+sdrapha@users.noreply.github.com> Date: Mon, 8 May 2023 22:40:14 -0400 Subject: [PATCH] Github actions to automate validation --- .github/workflows/tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 954983a..718b0b8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -29,8 +29,8 @@ jobs: name: 'Pylint' - run: | pip install mypy - mypy src/pyvesync python3 -m pip install types-requests + mypy src/pyvesync name: 'MyPy' pytest: @@ -43,6 +43,8 @@ jobs: - '3.10' - '3.11' steps: + - name: Checkout repo + uses: actions/checkout@v3 - name: 'Use Python ${{matrix.python-version}}' uses: actions/setup-python@v4 with: