dev: create cairo1helpers fixture (#777) #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: Build and Publish Artifacts | |
permissions: read-all | |
on: | |
push: | |
branches: [main] | |
jobs: | |
build-and-upload: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Scarb | |
uses: software-mansion/setup-scarb@v1 | |
- name: Build contracts | |
run: | | |
scarb build -p contracts | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: dev-artifacts | |
path: target/dev |