Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update readme #8

Merged
merged 2 commits into from
Nov 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,24 @@
name: CI
on: [pull_request]
on:
pull_request:
branches:
- main
types:
- edited
- opened
- reopened
- synchronize

jobs:
audit:
runs-on: ubuntu-latest

steps:
- name: 'PR format check'
uses: 'androidx/check-pr-format-action'
with:
checks: '["(https:\/\/optimizely.atlassian.net\/browse\/){1}(DATA|DSSM){1}-{1}([0-9]+)"]'

- uses: actions/checkout@v3
- name: inspect
run: |
Expand Down
13 changes: 0 additions & 13 deletions .github/workflows/pr.yml

This file was deleted.

3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
This is a rust based RESTfull service template. The main focus of this repo is to create a simple REST API that runs on a Salvo HTTP server and stores data in postgres using Diesel orm framework.

Develoer can continue to create other rust based RESTfull service using this repo as a starting template.