From 83a7d14e58dab6aec0c1926a3ec76f305c305624 Mon Sep 17 00:00:00 2001 From: Hamir Mahal Date: Mon, 15 Jul 2024 20:00:41 -0700 Subject: [PATCH] fix: comment not separated from other characters (#3328) --- .github/workflows/sqlx.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/sqlx.yml b/.github/workflows/sqlx.yml index b2b17691..ab542c2a 100644 --- a/.github/workflows/sqlx.yml +++ b/.github/workflows/sqlx.yml @@ -5,7 +5,7 @@ on: push: branches: - main - - '*-dev' + - "*-dev" jobs: format: @@ -97,7 +97,7 @@ jobs: strategy: matrix: - os: [ubuntu-latest, windows-latest]#, macOS-latest] + os: [ubuntu-latest, windows-latest] #, macOS-latest] include: - os: ubuntu-latest target: x86_64-unknown-linux-musl @@ -107,9 +107,9 @@ jobs: target: x86_64-pc-windows-msvc bin: target/debug/cargo-sqlx.exe # FIXME: macOS build fails because of missing pin-project-internal -# - os: macOS-latest -# target: x86_64-apple-darwin -# bin: target/debug/cargo-sqlx + # - os: macOS-latest + # target: x86_64-apple-darwin + # bin: target/debug/cargo-sqlx steps: - uses: actions/checkout@v2