Change macos-12 to macos-13 (#1883) #459
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: 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 |