Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
184 changes: 0 additions & 184 deletions .github/workflows/Pipfile.lock

This file was deleted.

54 changes: 0 additions & 54 deletions .github/workflows/event-logger.yml

This file was deleted.

26 changes: 26 additions & 0 deletions .github/workflows/pr_test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: PR Tests
on:
pull_request:
types: [opened, synchronize, closed]

jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
matrix:
python-version: ["3.9"]
steps:
- uses: actions/checkout@v4
- name: Install Python, pipenv and Pipfile packages
uses: kojoru/prepare-pipenv@v1
with:
python-version: ${{ matrix.python-version }}
- name: Turn on 'editable' mode
run: |
pipenv install -e .
- name: Test with pytest
run: |
pipenv install pytest
pipenv --venv
pipenv run python -m pytest
10 changes: 0 additions & 10 deletions .github/workflows/requirements.txt

This file was deleted.

10 changes: 6 additions & 4 deletions .github/workflows/Pipfile → Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,14 @@ verify_ssl = true
name = "pypi"

[packages]
gitcommitlogger = "*"
requests = "*"
pytz = "*"
python-dateutil = "*"

[dev-packages]
pytest = "*"
build = "*"
twine = "*"

[requires]
python_version = "3"

[scripts]
snacktime = "python -m snacktime"
Loading
Loading