Skip to content

Commit

Permalink
Merge unit-test and mypy workflows
Browse files Browse the repository at this point in the history
Reduces duplication and saves us one machine usable for the main CI
workflow.
  • Loading branch information
DaanDeMeyer committed Jul 30, 2020
1 parent d73caed commit 7f4bf0c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 22 deletions.
19 changes: 0 additions & 19 deletions .github/workflows/ci-mypy.yml

This file was deleted.

11 changes: 8 additions & 3 deletions .github/workflows/ci-unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,12 @@ jobs:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: install unit tester via pip
run: python3 -m pip install pytest
- name: run unit test

- name: Install
run: python3 -m pip install pytest 'mypy==0.770'

- name: Type Checking
run: python3 -m mypy mkosi

- name: Unit Tests
run: python3 -m pytest

0 comments on commit 7f4bf0c

Please sign in to comment.