Use the newer version of builder which extracts non-essential tools #1258
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: contract-ci | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
ci: | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Lint contract | |
run: make lint-contract | |
- name: Build contract | |
run: make build-contract | |
- name: Run tests | |
run: make test-contract |