aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfx <[email protected]>2023-10-16 17:52:17 +0200
committerfx <[email protected]>2023-10-16 17:52:17 +0200
commit48943e0de28b99d7f108e96b7d250bbf1a6c5a5b (patch)
treeb33a42de5a0534b48d2ada828ecde40e8d216bfe
parentaa6e227d6c92fe908e24df72c8e9f0a3aa5a2784 (diff)
downloadwebol-48943e0de28b99d7f108e96b7d250bbf1a6c5a5b.tar
webol-48943e0de28b99d7f108e96b7d250bbf1a6c5a5b.tar.gz
webol-48943e0de28b99d7f108e96b7d250bbf1a6c5a5b.zip
update readme with defaults
-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)