Files
OpenMensa-Parser-STW-Potsdam/.circleci/config.yml
T
dependabot[bot] 38d4a5476e Bump python from 3.11-alpine to 3.13-alpine (#28)
* Bump python from 3.11-alpine to 3.13-alpine

Bumps python from 3.11-alpine to 3.13-alpine.

---
updated-dependencies:
- dependency-name: python
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump dependencies

* Bump dependencies

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: f4lco <github@falcoduersch.com>
2024-11-17 11:57:01 +01:00

42 lines
1.7 KiB
YAML

version: 2.1
orbs:
python: circleci/python@1.5.0
jobs:
build-and-test:
docker:
- image: cimg/python:3.13
steps:
- checkout
- run:
name: Install Dependencies
command: make dependencies
- run:
name: Lint
command: make lint
- run:
name: Test
command: make test
- run:
name: Publish Coverage
command: make coverage_publish
- run:
name: Report Coverage
command: make coverage_report
workflows:
default:
jobs:
- build-and-test
nightly-build:
triggers:
- schedule:
cron: "5 10 * * 1-5"
filters:
branches:
only: master
jobs:
- build-and-test:
context: nightly