Support custom subject text #394
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
name: Premerge | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
push: | |
branches: [main] | |
schedule: | |
- cron: 0 0 1 * * | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout source | |
uses: actions/checkout@v3 | |
- name: install Rust | |
uses: actions-rust-lang/[email protected] | |
- name: check | |
run: cargo check | |
- name: test | |
run: cargo test | |
linting: | |
if: ${{ github.ref != 'main' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout source | |
uses: actions/checkout@v3 | |
- name: install Rust | |
uses: actions-rust-lang/[email protected] | |
with: { components: rustfmt, clippy } | |
- name: format | |
run: cargo fmt --all -- --check | |
- name: clippy | |
uses: actions-rs/clippy-check@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
args: -- -D warnings |