summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/pull_request.yml2
-rw-r--r--.github/workflows/push.yml11
-rw-r--r--README.md4
3 files changed, 13 insertions, 4 deletions
diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml
index 4466d7c..9a1d005 100644
--- a/.github/workflows/pull_request.yml
+++ b/.github/workflows/pull_request.yml
@@ -12,7 +12,7 @@ env:
12 CARGO_TERM_COLOR: always 12 CARGO_TERM_COLOR: always
13 13
14jobs: 14jobs:
15 build: 15 test:
16 runs-on: ubuntu-latest 16 runs-on: ubuntu-latest
17 steps: 17 steps:
18 - name: Run sccache-cache 18 - name: Run sccache-cache
diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml
index 1afe2d3..acffe51 100644
--- a/.github/workflows/push.yml
+++ b/.github/workflows/push.yml
@@ -12,7 +12,7 @@ env:
12 CARGO_TERM_COLOR: always 12 CARGO_TERM_COLOR: always
13 13
14jobs: 14jobs:
15 build: 15 test:
16 runs-on: ubuntu-latest 16 runs-on: ubuntu-latest
17 steps: 17 steps:
18 - name: Run sccache-cache 18 - name: Run sccache-cache
@@ -35,6 +35,15 @@ jobs:
35 with: 35 with:
36 command: clippy 36 command: clippy
37 37
38 - name: run test
39 uses: actions-rs/cargo@v1
40 with:
41 command: test
42
43 build:
44 runs-on: ubuntu-latest
45 needs: test
46 steps:
38 - name: Set up QEMU 47 - name: Set up QEMU
39 uses: docker/setup-qemu-action@v3 48 uses: docker/setup-qemu-action@v3
40 - name: Set up Docker Buildx 49 - name: Set up Docker Buildx
diff --git a/README.md b/README.md
index fdc7ad2..d177df2 100644
--- a/README.md
+++ b/README.md
@@ -4,6 +4,6 @@ DATABASE_URL: `String`
4 4
5WEBOL_APIKEY: `String` 5WEBOL_APIKEY: `String`
6 6
7WEBOL_SERVERADDR: `Option<String>` 7WEBOL_SERVERADDR: `Option<String>` (0.0.0.0:7229)
8 8
9WEBOL_BINDADDR: `Option<String>` 9WEBOL_BINDADDR: `Option<String>` (0.0.0.0:1111)