Compare commits

...
Sign in to create a new pull request.

18 commits

Author SHA1 Message Date
08ad958e12 try to get this working
All checks were successful
Pipeline main branch / test (push) Successful in 53s
2025-03-29 22:42:12 -04:00
a15a9de293 remove python version from main.yml
Some checks failed
Pipeline main branch / test (push) Failing after 4s
2025-03-29 22:37:18 -04:00
30707bd0b6 update python version
Some checks failed
Pipeline main branch / test (push) Failing after 6s
2025-03-29 22:36:27 -04:00
3cffd619ed remove python version from .yml
Some checks failed
Pipeline main branch / test (push) Failing after 5s
2025-03-29 22:27:42 -04:00
13c51edd26 update action version
Some checks failed
Pipeline main branch / test (push) Failing after 25s
2025-03-29 22:24:48 -04:00
106391a2ec add pip cache
Some checks failed
Pipeline main branch / test (push) Failing after 6s
2025-03-29 22:22:43 -04:00
800bdf6c3f update python version
Some checks failed
Pipeline main branch / test (push) Failing after 5s
2025-03-29 22:20:36 -04:00
a318f0353b update python version
Some checks failed
Pipeline main branch / test (push) Failing after 5s
2025-03-29 22:19:16 -04:00
1ffd42dec0 update main.yml
Some checks failed
Pipeline main branch / test (push) Failing after 6s
2025-03-29 22:16:53 -04:00
4e9a87eb29 add to main.yml
Some checks failed
Pipeline main branch / test (push) Failing after 6s
2025-03-29 22:15:22 -04:00
5d50cd102b change python version back
Some checks failed
Pipeline main branch / test (push) Failing after 5s
2025-03-29 22:12:48 -04:00
28ea9f609b change runner name
Some checks failed
Pipeline main branch / test (push) Failing after 10s
2025-03-29 22:11:41 -04:00
572249b4b9 test changing the ubuntu version
Some checks failed
Pipeline main branch / test (push) Has been cancelled
2025-03-29 22:00:27 -04:00
ed48e22ecc update python version in yml
Some checks failed
Pipeline main branch / test (push) Failing after 6s
2025-03-29 21:53:16 -04:00
9e97310217 change python version
Some checks failed
Pipeline main branch / test (push) Failing after 6s
2025-03-29 21:49:23 -04:00
4adfac9403 Change python version
Some checks failed
Pipeline main branch / test (push) Failing after 6s
2025-03-29 21:47:08 -04:00
3a69eba37c Add main.yml
Some checks failed
Pipeline main branch / test (push) Failing after 6s
2025-03-29 21:38:55 -04:00
ccc153a870 Merge pull request 'First commit' (#1) from development into main
Reviewed-on: #1
2025-03-29 21:32:46 -04:00
2 changed files with 29 additions and 2 deletions

View file

@ -0,0 +1,29 @@
name: Pipeline main branch
on:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
pip install -r requirements.txt
- name: Run tests
run: |
pytest

View file

@ -1,7 +1,5 @@
FROM python:3.12
MAINTAINER continuist
WORKDIR /app
COPY requirements.txt requirements.txt