We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9824b72 + d4300fa commit 17dd190Copy full SHA for 17dd190
2 files changed
.github/workflows/main.yml
@@ -0,0 +1,18 @@
1
+name: Python application
2
+on: [push, pull_request]
3
+jobs:
4
+ build:
5
+ runs-on: ubuntu-latest
6
+
7
+ steps:
8
+ - uses: actions/checkout@v3
9
+ - name: Set up Python 3.8
10
+ uses: actions/setup-python@v4
11
+ with:
12
+ python-version: 3.8
13
+ - name: Install dependencies
14
+ run: |
15
+ python -m pip install --upgrade pip
16
+ - name: Run tests
17
18
+ python -m unittest discover -s tests
README.md
@@ -1,2 +1,4 @@
# github-actions-python-ci
Python project to demonstrate continuous integration.
+[](https://github.com/awjans/github-actions-python-ci/actions/workflows/main.yml)
0 commit comments