chore: populate Events #67
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ------------------------------------------------------------------- | |
# ------------------------------- WARNING --------------------------- | |
# ------------------------------------------------------------------- | |
# | |
# This file was automatically generated by rust-gh-workflows using the | |
# gh-workflow-gen bin. You should add and commit this file to your | |
# git repository. **DO NOT EDIT THIS FILE BY HAND!** Any manual changes | |
# will be lost if the file is regenerated. | |
# | |
# To make modifications, update your `build.rs` configuration to adjust | |
# the workflow description as needed, then regenerate this file to apply | |
# those changes. | |
# | |
# ------------------------------------------------------------------- | |
# ----------------------------- END WARNING ------------------------- | |
# ------------------------------------------------------------------- | |
name: CI | |
env: | |
RUSTFLAGS: -Dwarnings | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
branches: | |
- main | |
permissions: | |
contents: read | |
jobs: | |
build: | |
name: Build and Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
toolchain: stable, nightly | |
components: clippy, rustfmt | |
- run: cargo test --all-features --workspace | |
- run: cargo +nightly fmt --check | |
- run: cargo +nightly clippy --all-features --workspace -- -D warnings |