Skip to content

Commit

Permalink
Merge pull request #7 from Flanker-shyam/workflow
Browse files Browse the repository at this point in the history
create basic workflow
  • Loading branch information
Flanker-shyam authored Jan 30, 2024
2 parents 09395a1 + b4da2d0 commit ab4d48a
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: first workflow
on: [push]
jobs:
check-python-version
runs-on: ubuntu-latest
steps:
- name: use latest commit
uses: actions/checkout@v2
- name: use particular python version
uses: actions/setup-python@v2
with:
python: 3.6.9
- name: Check version
run: python --version

0 comments on commit ab4d48a

Please sign in to comment.