feat: Use http get
instead of aria2c
for binary downloading when …
#33
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
# Description: | |
# - Setup Moonbit with GitHub Actions | |
# REF: | |
# - https://github.com/marketplace/actions/checkout | |
name: Setup-Moonbit@Release | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '**.md' | |
jobs: | |
setup-moonbit: | |
strategy: | |
matrix: | |
os: [windows-latest, ubuntu-22.04, macos-latest] | |
runs-on: ${{ matrix.os }} | |
name: Setup MoonBit@${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Setup Moonbit | |
uses: hustcer/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Check Moonbit Version | |
run: | | |
moon version | |
moonc -v | |
moonrun --version | |
moon new hello && cd hello | |
moon run main |