Skip to content

Commit

Permalink
feat: Add GitHub Actions workflow for mill setup
Browse files Browse the repository at this point in the history
  • Loading branch information
sweep-ai[bot] authored Jan 6, 2024
1 parent a9b765f commit 4963329
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: .github/workflows/main.yml

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Install mill
uses: <mill_install_action>
with:
version: <mill_version>

- name: Run mill command
run: mill <command>

- name: Additional steps
# Add any additional steps or actions required for the workflow

0 comments on commit 4963329

Please sign in to comment.