diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d39e862..caec945 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,9 +2,9 @@ name: Build on: push: - branches: [ "main" ] + branches: ["main"] pull_request: - branches: [ "main" ] + branches: ["main"] env: CARGO_TERM_COLOR: always @@ -13,10 +13,12 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - name: Check - run: cargo check --verbose - - name: Build - run: cargo build --verbose - - name: Test - run: cargo test --verbose + - uses: actions/checkout@v3 + - name: Check + run: cargo check --verbose + - name: Build + run: cargo build --verbose + - name: Test + run: cargo test --verbose + - name: Publish (Dry Run) + run: cargo publish --dry-run