Eth-connector: switch to near-plugins #201
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
name: CI | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
jobs: | |
check: | |
name: Checks | |
runs-on: [self-hosted, heavy] | |
steps: | |
- name: Install rust | |
run: | | |
rustup show | |
rustup default ${{ env.RUST_VERSION }} | |
- name: Clone the repository | |
uses: actions/checkout@v4 | |
- name: Run all checks | |
run: make check | |
test: | |
name: Tests | |
runs-on: [self-hosted, heavy] | |
steps: | |
- name: Install rust | |
run: | | |
rustup show | |
rustup default ${{ env.RUST_VERSION }} | |
- name: Clone the repository | |
uses: actions/checkout@v4 | |
- name: Restore cache | |
run: | | |
cache-util restore cargo_git cargo_registry | |
- name: Run tests | |
run: make test | |
- name: Save cache | |
run: | | |
cache-util save cargo_git cargo_registry | |
env: | |
RUST_VERSION: 1.73.0 | |
CARGO_TERM_COLOR: always | |
CARGO_INCREMENTAL: 0 |