feat(target_chains/sui): Use Turbo for Commands #5422
Workflow file for this run
This file contains hidden or 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: Pre-commit checks | |
on: | |
pull_request: | |
branches: "**" | |
push: | |
branches: [main] | |
env: | |
PYTHON_VERSION: "3.11" | |
POETRY_VERSION: "1.4.2" | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest-x64-m | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: default | |
toolchain: 1.82.0 | |
- name: Install Rust versions | |
run: | | |
rustup install 1.73.0 | |
rustup install 1.66.1 | |
- name: Cache Rust dependencies | |
uses: Swatinem/rust-cache@v2 | |
with: | |
workspaces: | | |
apps/fortuna | |
apps/hermes/server | |
target_chains/ethereum/sdk/stylus | |
target_chains/cosmwasm | |
target_chains/fuel/contracts | |
target_chains/solana | |
governance/remote_executor | |
lazer | |
pythnet/message_buffer | |
pythnet/pythnet_sdk | |
pythnet/stake_caps_parameters | |
# We only save the cache from runs on `main` because the cache is ~5GB, and the total Github Cache limit is 10GB. | |
# Branches have their own caches, so saving this cache on PRs can result in evicting the main cache. | |
save-if: ${{ github.ref == 'refs/heads/main' }} | |
- name: Install protoc | |
uses: arduino/setup-protoc@v3 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install poetry | |
run: pipx install poetry | |
- name: Install g++ 12 | |
run: | | |
sudo apt-get install g++-12 | |
echo "CXX=/usr/bin/g++-12" >> "${GITHUB_ENV}" | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
id: setup_python | |
- name: Cache Poetry cache | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/pypoetry | |
key: poetry-cache-${{ runner.os }}-${{ steps.setup_python.outputs.python-version }}-${{ env.POETRY_VERSION }} | |
# Install Aptos CLI for Lazer contract formatting and linting | |
- name: Download Aptos CLI | |
run: wget https://github.com/aptos-labs/aptos-core/releases/download/aptos-cli-v6.1.1/aptos-cli-6.1.1-Ubuntu-22.04-x86_64.zip | |
- name: Install Aptos CLI | |
run: | | |
unzip aptos-cli-6.1.1-Ubuntu-22.04-x86_64.zip | |
sudo mv aptos /usr/local/bin/ | |
chmod +x /usr/local/bin/aptos | |
aptos update movefmt | |
- uses: pre-commit/[email protected] |