-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (37 loc) · 1 KB
/
rust.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
setup:
name: Setup
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
build_and_test:
name: Build and Test
runs-on: ubuntu-latest
services:
cassandra:
image: cassandra
ports:
- 9042:9042
options: --health-cmd "cqlsh --debug" --health-interval 5s --health-retries 100
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Prepare / Save test private key file from secrets
run: envsubst < private.key.envsubst.txt > private.key
env:
TEST_PRIVATE_SERVER_KEY: ${{ secrets.TEST_PRIVATE_SERVER_KEY }}
- name: Test / Save test cert file from secrets
run: envsubst < server.crt.envsubst.txt > server.crt
env:
TEST_SERVER_CERT: ${{ secrets.TEST_SERVER_CERT }}
- name: Test / Run tests
run: cargo test -- --nocapture