-
Notifications
You must be signed in to change notification settings - Fork 1
63 lines (62 loc) · 1.76 KB
/
test-deploy.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: Test & Deploy
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
pages: write
id-token: write
services:
postgres:
image: postgres
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup MariaDB
uses: shogo82148/actions-setup-mysql@v1
with:
mysql-version: mariadb-11.1
root-password: root
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Run tests
run: |
echo "MYSQL_PASSWORD=root" > .env
echo "MYSQL_HOST=127.0.0.1" >> .env
echo "POSTGRES_PASSWORD=postgres" >> .env
cargo test --all-features
- name: Install latest mdBook
run: |
tag=$(curl 'https://api.github.com/repos/rust-lang/mdbook/releases/latest' | jq -r '.tag_name')
url="https://github.com/rust-lang/mdbook/releases/download/${tag}/mdbook-${tag}-x86_64-unknown-linux-gnu.tar.gz"
mkdir mdbook
curl -sSL $url | tar -xz --directory=./mdbook
echo `pwd`/mdbook >> $GITHUB_PATH
- name: Build Book
run: |
cd book
cargo test
mdbook build
- name: Setup Pages
uses: actions/configure-pages@v2
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: "book/book"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1