Skip to content

Commit

Permalink
fixed: github python action issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
Almas-Ali committed Jul 24, 2024
1 parent 94f42df commit 0dff962
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
name: CI
on: [push, pull_request]
jobs:
everything:
radon-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: python3.12 -m pip install mypy ruff
- run: python3.12 test.py full
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- run: python -m pip install mypy ruff
- run: python test.py full

0 comments on commit 0dff962

Please sign in to comment.