Skip to content

xtask: fix migration to xshell #1093

xtask: fix migration to xshell

xtask: fix migration to xshell #1093

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
fmt:
name: fmt
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install rustfmt from the rust stable toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- name: Rustfmt
run: cargo fmt --all -- --check
build_and_test:
name: testing
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- name: cargo build
run: cargo build --verbose --all
- name: cargo test
run: cargo test --verbose --all
- name: cargo xtask test
run: cargo xtask test
- name: print logs
run: cat test_log/*.log
if: failure()