feat: Add GitHub Actions workflow for mill setup #1
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: .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 |