Skip to content

Commit 75f7ffa

Browse files
committed
chore: rustfmt and 'docker-compose' on the CI action
1 parent 6b8681a commit 75f7ffa

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ jobs:
2323
- { rust: stable, os: windows-latest }
2424

2525
steps:
26-
- name: Make the USER own the working directory. Installing `gssapi` headers
26+
- name: Make the USER own the working directory. Installing required build dependencies
2727
if: ${{ matrix.os == 'ubuntu-latest' }}
2828
run: |
2929
sudo chown -R $USER:$USER ${{ github.workspace }}
30-
sudo apt -y install gcc libgssapi-krb5-2 libkrb5-dev libsasl2-modules-gssapi-mit
30+
sudo apt -y install gcc libgssapi-krb5-2 libkrb5-dev libsasl2-modules-gssapi-mit docker-compose
3131
3232
- uses: actions/checkout@v3
3333

canyon_macros/src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,6 @@ pub fn implement_row_mapper_for_type(input: proc_macro::TokenStream) -> proc_mac
442442
}
443443
});
444444

445-
446445
// TODO: refactor the code below after the current bugfixes, to conditinally generate
447446
// the required methods and populate the CanyonMapper trait dependencing on the cfg flags
448447
// enabled with a more elegant solution (a fn for feature, for ex)
@@ -457,7 +456,6 @@ pub fn implement_row_mapper_for_type(input: proc_macro::TokenStream) -> proc_mac
457456
}
458457
});
459458

460-
461459
#[cfg(feature = "mssql")]
462460
let init_field_values_sqlserver = fields.iter().map(|(_vis, ident, ty)| {
463461
let ident_name = ident.to_string();

0 commit comments

Comments
 (0)