name: Test the running changes on: push: branches: [ "dev" ] pull_request: branches: [ "master" ] env: CARGO_TERM_COLOR: always jobs: test: name: Test runs-on: rust-latest steps: - name: Deps run: apt-get update -y && apt-get install nodejs -y - name: Checkout repo uses: actions/checkout@v4 - name: cargo test run: cargo test --verbose