We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe237b8 commit 7097656Copy full SHA for 7097656
.github/workflows/github-actions-demo.yml
.github/workflows/tests.yaml
@@ -0,0 +1,15 @@
1
+name: Tests
2
+run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
3
+on: [push]
4
+jobs:
5
+ Explore-GitHub-Actions:
6
+ runs-on: ubuntu-latest
7
+ steps:
8
+ - uses: actions/checkout@v4
9
+ - use: actions/setup-python@v5
10
+ with:
11
+ python-version: 3.13.0
12
+ - run: python -m pip install --upgrade pip
13
+ - run: pip install -r requirements.txt
14
+ - run: pytest
15
+ - run: echo "🍏 This job's status is ${{ job.status }}."
0 commit comments