Skip to content

Change runner to macos-latest (#1826) #435

Change runner to macos-latest (#1826)

Change runner to macos-latest (#1826) #435

name: Update missing hints tracking issue
on:
push:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
run:
runs-on: ubuntu-22.04
steps:
- name: Install Rust toolchain
uses: dtolnay/[email protected]
- name: Set up Cargo cache
uses: Swatinem/rust-cache@v2
- name: Checkout
uses: actions/checkout@v3
- name: Check Build
run: cargo build -p hint_accountant
- name: Clone cairo-lang repo
run: git clone --depth=1 https://github.com/starkware-libs/cairo-lang
- name: Run the hint accounting script
run: cargo r -p hint_accountant | tee comment.md
- name: Update comment in tracking issue
uses: peter-evans/create-or-update-comment@v3
with:
issue-number: 1031
comment-id: 1518234161
body-path: comment.md
edit-mode: replace