Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
vruello committed Jun 5, 2023
0 parents commit 63e60ce
Show file tree
Hide file tree
Showing 69 changed files with 17,467 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/rust-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Rust

on: [push]

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt-get update && \
sudo apt-get install -y --no-install-recommends \
libkrb5-dev \
libssl-dev
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose -- --skip postgres
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/target
/.vscode
Loading

0 comments on commit 63e60ce

Please sign in to comment.