mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-23 00:18:00 +00:00
89c886429f
Bumps [JasonEtco/create-an-issue](https://github.com/jasonetco/create-an-issue) from 2.9.1 to 2.9.2. - [Release notes](https://github.com/jasonetco/create-an-issue/releases) - [Commits](https://github.com/jasonetco/create-an-issue/compare/e27dddc79c92bc6e4562f268fffa5ed752639abd...1b14a70e4d8dc185e5cc76d3bec9eab20257b2c5) --- updated-dependencies: - dependency-name: JasonEtco/create-an-issue dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
52 lines
1.5 KiB
YAML
52 lines
1.5 KiB
YAML
name: Daily compatibility check against latest substrate
|
|
|
|
on:
|
|
schedule:
|
|
# Run at 8am every day, well after the new binary is built
|
|
- cron: "0 8 * * *"
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
tests:
|
|
name: Cargo test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Use substrate and polkadot node binaries
|
|
uses: ./.github/workflows/actions/use-nodes
|
|
|
|
- name: Install Rust stable toolchain
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
profile: minimal
|
|
toolchain: stable
|
|
override: true
|
|
|
|
- name: Rust Cache
|
|
uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # v2.7.3
|
|
|
|
- name: Cargo test
|
|
uses: actions-rs/cargo@v1.0.3
|
|
with:
|
|
command: test
|
|
args: --all-targets --workspace
|
|
|
|
# If any previous step fails, create a new Github issue to notify us about it.
|
|
- if: ${{ failure() }}
|
|
uses: JasonEtco/create-an-issue@1b14a70e4d8dc185e5cc76d3bec9eab20257b2c5 # v2.9.2
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
# Use this issue template:
|
|
filename: .github/issue_templates/nightly_run_failed.md
|
|
# Update existing issue if found; hopefully will make it clearer
|
|
# that it is still an issue:
|
|
update_existing: true
|
|
# Look for new *open* issues in this search (we want to
|
|
# create a new one if we only find closed versions):
|
|
search_existing: open
|