Update Release Profile #9
Workflow file for this run
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
# GitHub Action runners come pre-installed with Cargo 1.76.0 (latest) | |
name: CI | |
on: | |
pull_request: | |
branches: ["main"] | |
workflow_dispatch: | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Format | |
run: make format | |
- name: Test | |
run: make test | |
- name: Deploy | |
run: | | |
echo "Deploying..." | |
# make build |