Skip to content

Commit

Permalink
CircleCI Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
GalKepler committed Aug 4, 2024
1 parent 2cfe1ad commit d36b7a2
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# This config was automatically generated from your source code
# Stacks detected: cicd:github-actions:.github/workflows,deps:python:.,package_manager:poetry:.,test:tox:.
version: 2.1
orbs:
python: circleci/python@2
jobs:
test-python:
# Install dependencies and run tests
docker:
- image: cimg/python:3.10-node
steps:
- checkout
- python/install-packages:
pkg-manager: poetry
- python/install-packages:
args: tox
pkg-manager: poetry
- run:
name: Run tests
command: poetry run tox
- store_test_results:
path: junit.xml
deploy:
# This is an example deploy job, not actually used by the workflow
docker:
- image: cimg/base:stable
steps:
# Replace this with steps to deploy to users
- run:
name: deploy
command: '#e.g. ./deploy.sh'
- run:
name: found github actions config
command: ':'
workflows:
build-and-test:
jobs:
- test-python
# - deploy:
# requires:
# - test-python

0 comments on commit d36b7a2

Please sign in to comment.