Skip to content

Commit

Permalink
Complete 'Github Actions' configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
lycantropos committed Jul 9, 2023
1 parent 35c969d commit 93f395c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,19 @@ jobs:
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet_version }}
- name: 'Install C# linter'
- name: 'Install CSharpier'
run: dotnet tool install csharpier -g
- name: 'Run C# linter'
- name: 'Run CSharpier'
run: dotnet csharpier --check .
- name: 'Setup Python'
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python_version }}
architecture: ${{ matrix.platform.python_architecture }}
- name: 'Install MyPy'
run: python -m pip install mypy
- name: 'Run MyPy'
run: mypy --ignore-missing-imports tests
- name: 'Install tests dependencies'
run: python -m pip install -r requirements-tests.txt
- name: 'Publish project'
Expand Down

0 comments on commit 93f395c

Please sign in to comment.