Skip to content

Commit

Permalink
CircleCI Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
JCBurnside committed Apr 5, 2024
1 parent 69288b9 commit a8423f2
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# This config was automatically generated from your source code
# Stacks detected: cicd:github-actions:.github/workflows,deps:rust:.
version: 2.1
jobs:
test-rust:
docker:
- image: cimg/rust:1.70
steps:
- checkout
- restore_cache:
key: cargo-{{ checksum "Cargo.lock" }}
- run:
command: cargo test
- save_cache:
key: cargo-{{ checksum "Cargo.lock" }}
paths:
- ~/.cargo
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-rust
# - deploy:
# requires:
# - test-rust

0 comments on commit a8423f2

Please sign in to comment.