Skip to content

Commit

Permalink
add: git action
Browse files Browse the repository at this point in the history
  • Loading branch information
khalsz committed Jan 1, 2025
1 parent ad4055a commit 3511577
Show file tree
Hide file tree
Showing 2 changed files with 2,537 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@ name: CI workflow
# We can specify which Github events will trigger a CI build
on:
push:
branches: [main, develop]
pull_request:
branches:
- main
# now define a single job 'build' (but could define more, can be anything other than build)
jobs:
build:
Expand All @@ -20,8 +16,8 @@ jobs:

- name: Set up Python 3.9
uses: actions/setup-python@v3
with:
python-version: "3.9"
with:
python-version: "3.10"
- name: Install Python Dependencies
run: |
python3 -m pip install --upgrade pip
Expand Down
Loading

0 comments on commit 3511577

Please sign in to comment.