We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9031f52 + 5ce2067 commit c9a8124Copy full SHA for c9a8124
.github/workflows/deploy.yml
@@ -19,9 +19,20 @@ jobs:
19
- name: Set TEST_DATABASE_URL
20
run: echo "TEST_DATABASE_URL=postgres://postgres:postgres@localhost:5432/test_db" >> $GITHUB_ENV
21
22
+ - name: Install Rust and Cargo
23
+ run: |
24
+ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
25
+ source $HOME/.cargo/env
26
+
27
+ - name: Run Tests
28
+ run: cargo test
29
30
31
32
- uses: shuttle-hq/deploy-action@main
33
with:
34
name: "root"
35
+ no-test: "true"
36
deploy-key: ${{ secrets.SHUTTLE_API_KEY }}
37
secrets: |
38
ROOT_SECRET = '${{ secrets.ROOT_SECRET }}'
0 commit comments