Add .circleci
This commit is contained in:
parent
398f1c7e2f
commit
437c2e2613
1 changed files with 32 additions and 0 deletions
32
.circleci/config.yaml
Normal file
32
.circleci/config.yaml
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
# Use the latest 2.1 version of CircleCI pipeline process engine.
|
||||||
|
# See: https://circleci.com/docs/2.0/configuration-reference
|
||||||
|
version: 2.1
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
# Below is the definition of your job to build and test your app, you can rename and customize it as you want.
|
||||||
|
build-and-test:
|
||||||
|
# These next lines define a Docker executor: https://circleci.com/docs/2.0/executor-types/
|
||||||
|
# You can specify an image from Dockerhub or use one of our Convenience Images from CircleCI's Developer Hub.
|
||||||
|
# Be sure to update the tag on this image to a more stable version, using latest can result in unstable builds.
|
||||||
|
docker:
|
||||||
|
- image: microsoft/dotnet:latest
|
||||||
|
steps:
|
||||||
|
# Checkout the code as the first step.
|
||||||
|
- checkout
|
||||||
|
# Then simply use the dotnet container as you'd expect and run your tests
|
||||||
|
- run:
|
||||||
|
# Update this line with the directory that contains your tests project file
|
||||||
|
working_directory: ~/project/Retroactiune.UnitTests
|
||||||
|
name: Run tests
|
||||||
|
command: |
|
||||||
|
dotnet test
|
||||||
|
|
||||||
|
|
||||||
|
workflows:
|
||||||
|
# Below is the definition of your workflow.
|
||||||
|
# Inside the workflow, you provide the jobs you want to run, e.g this workflow runs the build-and-test job above.
|
||||||
|
# CircleCI will run this workflow on every commit.
|
||||||
|
# For more details on extending your workflow, see the configuration docs: https://circleci.com/docs/2.0/configuration-reference/#workflows
|
||||||
|
sample:
|
||||||
|
jobs:
|
||||||
|
- build-and-test
|
Loading…
Reference in a new issue