Skip to content

Commit

Permalink
CircleCI Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
hathach committed May 10, 2024
1 parent e827829 commit 15e2ccf
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .circleci/config.yml
@@ -0,0 +1,39 @@
# This config was automatically generated from your source code
# Stacks detected: cicd:github-actions:.github/workflows,deps:python:docs
version: 2.1
orbs:
python: circleci/python@2
jobs:
test-python:
# Install dependencies and run tests
docker:
- image: cimg/python:3.8-node
working_directory: ~/project/docs
steps:
- checkout:
path: ~/project
- python/install-packages
- run:
name: Run tests
command: pytest --junitxml=junit.xml || ((($? == 5)) && echo 'Did not find any tests to run.')
- 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 15e2ccf

Please sign in to comment.