Skip to content

Commit

Permalink
Merge pull request #5 from ishan-surana/ishan-surana-test-1
Browse files Browse the repository at this point in the history
Create main.yml
  • Loading branch information
ishan-surana authored Aug 15, 2024
2 parents 0742021 + 67dde36 commit 508ce49
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Test testing

on:
workflow_dispatch:

permissions:
contents: read

jobs:
deploy:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Run tests
run: |
pytest tests/ --maxfail=1 --disable-warnings -q

0 comments on commit 508ce49

Please sign in to comment.