Skip to content

Commit 6b8681a

Browse files
committed
chore: adding 'docker-compose' on the 'ubuntu-latest' based actions
1 parent 0840a57 commit 6b8681a

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/code-quality.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ jobs:
2727
- uses: hecrj/setup-rust-action@v1
2828
with:
2929
components: clippy
30-
- run: cargo clippy --workspace --all-targets --verbose --all-features
30+
- run: cargo clippy --workspace --all-targets --all-features
31+
3132
rustfmt:
3233
name: Verify code formatting
3334
runs-on: ubuntu-latest

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ jobs:
1414
- name: Checkout sources
1515
uses: actions/checkout@v3
1616

17+
- name: Installing `docker-compose`
18+
run: sudo apt -y install docker-compose
1719
- name: Installing `gssapi` headers
1820
run: sudo apt -y install gcc libgssapi-krb5-2 libkrb5-dev libsasl2-modules-gssapi-mit
1921

@@ -53,4 +55,4 @@ jobs:
5355
with:
5456
configuration: "./.github/changelog_configuration.json"
5557
env:
56-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
58+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

canyon_entities/src/register_types.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/// This file contains `Rust` types that represents an entry on the `CanyonRegister`
22
/// where `Canyon` tracks the user types that has to manage
3-
43
pub const NUMERIC_PK_DATATYPE: [&str; 6] = ["i16", "u16", "i32", "u32", "i64", "u64"];
54

65
/// Gets the necessary identifiers of a CanyonEntity to make it the comparative

0 commit comments

Comments
 (0)