summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOrhun Parmaksız <orhunparmaksiz@gmail.com>2021-10-30 23:43:07 +0300
committerOrhun Parmaksız <orhunparmaksiz@gmail.com>2021-10-30 23:43:07 +0300
commitce40d05e30d2a7e09084a9c3eae5265541a84e20 (patch)
tree84ad3088e9aba4ee7c2f6860967d4bfbd3860b6f
parentc05e37ae4012fbf274a1e2af16a04b5f33d65e41 (diff)
style: Format the CI workflow
-rw-r--r--.github/workflows/ci.yml7
1 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index e243083..9e32535 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -68,13 +68,16 @@ jobs:
args: --target ${{ matrix.TARGET }}
- name: Run code coverage tool
- if: matrix.TOOLCHAIN == 'stable' && matrix.TARGET == 'x86_64-unknown-linux-gnu'
+ if: matrix.TOOLCHAIN == 'stable'
+ && matrix.TARGET == 'x86_64-unknown-linux-gnu'
uses: actions-rs/tarpaulin@v0.1
with:
args: "-v"
- name: Upload reports to codecov.io
- if: github.event_name != 'pull_request' && matrix.TOOLCHAIN == 'stable' && matrix.TARGET == 'x86_64-unknown-linux-gnu'
+ if: github.event_name != 'pull_request'
+ && matrix.TOOLCHAIN == 'stable'
+ && matrix.TARGET == 'x86_64-unknown-linux-gnu'
uses: codecov/codecov-action@v1.0.7
with:
token: ${{ secrets.CODECOV_TOKEN }}