Skip to content

Commit

Permalink
Add workflow and some updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Shortfinga committed Jul 26, 2024
1 parent 5c39f54 commit d4891d8
Show file tree
Hide file tree
Showing 3 changed files with 236 additions and 449 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Code testing

on: [push]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Analyzing the code
run: |
make
Loading

0 comments on commit d4891d8

Please sign in to comment.