Add script #2
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 | |
pull_request: | |
jobs: | |
test: | |
name: test ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y curl git | |
- name: Setup asdf | |
uses: asdf-vm/actions/[email protected] | |
- name: Fetch latest Scarb version from GitHub releases | |
id: scarb_version | |
shell: pwsh | |
run: | | |
$location = (Invoke-WebRequest -Uri "https://github.com/software-mansion/scarb/releases/latest" -Method Head -MaximumRedirection 0 -SkipHttpErrorCheck -ErrorAction Ignore).Headers.Location | |
$latest_version = ($location -replace '^.*/v','') | |
echo "Latest Scarb version found is $latest_version" | |
echo "LATEST_SCARB_VERSION=$latest_version" >> $env:GITHUB_OUTPUT | |
- name: Fetch latest Starknet Foundry version from GitHub releases | |
id: foundry_version | |
shell: pwsh | |
run: | | |
$location = (Invoke-WebRequest -Uri "https://github.com/foundry-rs/starknet-foundry/releases/latest" -Method Head -MaximumRedirection 0 -SkipHttpErrorCheck -ErrorAction Ignore).Headers.Location | |
$latest_version = ($location -replace '^.*/v','') | |
echo "Latest Starknet Foundry version found is $latest_version" | |
echo "LATEST_SNFOUNDRY_VERSION=$latest_version" >> $env:GITHUB_OUTPUT | |
- name: Fetch latest Universal Sierra Compiler version from GitHub releases | |
id: usc_version | |
shell: pwsh | |
run: | | |
$location = (Invoke-WebRequest -Uri "https://github.com/software-mansion/universal-sierra-compiler/releases/latest" -Method Head -MaximumRedirection 0 -SkipHttpErrorCheck -ErrorAction Ignore).Headers.Location | |
$latest_version = ($location -replace '^.*/v','') | |
echo "Latest Universal Sierra Compiler version found is $latest_version" | |
echo "LATEST_USC_VERSION=$latest_version" >> $env:GITHUB_OUTPUT | |
- name: Run starknetup | |
run: ./starknetup.sh | |
- name: Check Scarb latest | |
run: scarb --version | grep "scarb ${{ steps.scarb_version.outputs.LATEST_SCARB_VERSION }}" | |
- name: Check Starknet Foundry latest | |
run: snforge --version | grep "${{ steps.foundry_version.outputs.LATEST_SNFOUNDRY_VERSION }}" | |
- name: Check Universal Sierra Compiler latest | |
run: universal-sierra-compiler --version | grep "${{ steps.usc_version.outputs.LATEST_USC_VERSION }}" | |
shellcheck: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: shellcheck starknetup.sh | |
shfmt: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: mfinelli/setup-shfmt@v3 | |
- uses: actions/checkout@v4 | |
- run: shfmt --diff starknetup.sh |