Skip to content

Commit

Permalink
chore: add cicd
Browse files Browse the repository at this point in the history
  • Loading branch information
parketh committed Apr 5, 2024
1 parent 82b0e1f commit 0d4675d
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Tests and linter

on:
push:
branches: [main]
pull_request:
branches: [main]

env:
SCARB_VERSION: 2.5.4
SNFORGE_VERSION: 0.19.0

jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Scarb
run: |
curl --proto '=https' --tlsv1.2 -sSf https://docs.swmansion.com/scarb/install.sh | bash -s -- -v ${{ env.SCARB_VERSION }}
- name: Setup Foundry
run: |
curl -L https://raw.githubusercontent.com/foundry-rs/starknet-foundry/master/scripts/install.sh | sh -s -- -v ${{ env.SNFORGE_VERSION }}
snfoundryup -v ${{ env.SNFORGE_VERSION }}
- name: Add Foundry to PATH
run: echo "PATH=/home/runner/.local/bin:$PATH" >> $GITHUB_ENV

- name: Build and test
working-directory: .
run: |
snforge test
scarb build

0 comments on commit 0d4675d

Please sign in to comment.