Compare commits
No commits in common. "main" and "development" have entirely different histories.
main
...
developmen
2 changed files with 2 additions and 29 deletions
|
@ -1,29 +0,0 @@
|
|||
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
|
|
@ -1,5 +1,7 @@
|
|||
FROM python:3.12
|
||||
|
||||
MAINTAINER continuist
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY requirements.txt requirements.txt
|
||||
|
|
Loading…
Add table
Reference in a new issue