diff options
author | FxQnLr <[email protected]> | 2023-10-21 22:05:26 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2023-10-21 22:05:26 +0200 |
commit | d9d7b125e4fcaa3aedd7b57a69e6880e012ccf33 (patch) | |
tree | fba162e613bf62984a3a7fb867c6d3c5d593f101 /.github/workflows/push.yml | |
parent | e8a8b2d33eec5da6701b04181b14de755e8b8063 (diff) | |
parent | ed47f77439a74ff58cc05367bd7a9d9fec324d97 (diff) | |
download | webol-d9d7b125e4fcaa3aedd7b57a69e6880e012ccf33.tar webol-d9d7b125e4fcaa3aedd7b57a69e6880e012ccf33.tar.gz webol-d9d7b125e4fcaa3aedd7b57a69e6880e012ccf33.zip |
Merge pull request #5 from FxQnLr/fix-init-db
fixed move of init_db_pool
Diffstat (limited to '.github/workflows/push.yml')
-rw-r--r-- | .github/workflows/push.yml | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index acffe51..93b6edb 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml | |||
@@ -29,16 +29,13 @@ jobs: | |||
29 | uses: actions-rs/cargo@v1 | 29 | uses: actions-rs/cargo@v1 |
30 | with: | 30 | with: |
31 | command: check | 31 | command: check |
32 | 32 | args: --release | |
33 | |||
33 | - name: Run Clippy | 34 | - name: Run Clippy |
34 | uses: actions-rs/cargo@v1 | 35 | uses: actions-rs/cargo@v1 |
35 | with: | 36 | with: |
36 | command: clippy | 37 | command: clippy |
37 | 38 | args: --release | |
38 | - name: run test | ||
39 | uses: actions-rs/cargo@v1 | ||
40 | with: | ||
41 | command: test | ||
42 | 39 | ||
43 | build: | 40 | build: |
44 | runs-on: ubuntu-latest | 41 | runs-on: ubuntu-latest |