Skip to content

Commit 7097656

Browse files
committed
Test added to github actions
1 parent fe237b8 commit 7097656

File tree

2 files changed

+15
-18
lines changed

2 files changed

+15
-18
lines changed

.github/workflows/github-actions-demo.yml

Lines changed: 0 additions & 18 deletions
This file was deleted.

.github/workflows/tests.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)