name: Rust CI on: push: branches: ["main"] tags: ["v*"] pull_request: types: [opened, synchronize, reopened] jobs: rustfmt: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 with: profile: minimal toolchain: stable components: rustfmt - run: cargo fmt --all -- --check clippy: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 with: profile: minimal toolchain: stable components: clippy - run: cargo clippy --workspace --all-targets --all-features -- -D warnings test: runs-on: ubuntu-latest env: CARGO_TERM_COLOR: always steps: - uses: actions/checkout@v3 - uses: taiki-e/install-action@v2 with: tool: nextest - run: cargo nextest run --all-features --profile ci doc: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 with: profile: minimal toolchain: stable - run: cargo doc --all-features --no-deps publish: name: publish on crates.io needs: - rustfmt - clippy - test - doc if: ${{ startsWith(github.ref, 'refs/tags/v') }} runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - run: cargo publish -p jsonpath-rust --token ${{ secrets.CRATES_IO_TOKEN }}