1
0
mirror of https://github.com/romanz/electrs.git synced 2024-11-19 09:54:09 +01:00

Merge remote-tracking branch 'kixunil/locked_cargo'

This commit is contained in:
Roman Zeyde 2020-11-25 08:55:43 +02:00
commit 2f1b9e2ecf
No known key found for this signature in database
GPG Key ID: 87CAE5FA46917CBB
2 changed files with 3 additions and 3 deletions

View File

@ -28,10 +28,10 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: build
args: --release --all
args: --locked --release --all
- name: Test
uses: actions-rs/cargo@v1
with:
command: test
args: --release --all
args: --locked --release --all

View File

@ -14,7 +14,7 @@ RUN chown -R user .
USER user
RUN cargo install --path .
RUN cargo install --locked --path .
# Electrum RPC
EXPOSE 50001