Bump to September 2024 nightly #3
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
name: Default pipeline | |
on: | |
push: | |
branches: # all branches | |
- '*' | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- '*' | |
permissions: | |
contents: write | |
jobs: | |
setup: | |
name: Setup environment and install dependencies | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Magic | |
run: | | |
curl -ssL https://magic.modular.com | bash | |
- name: Install Mojo | |
run: modular install mojo | |
- name: Add to PATH | |
run: source $HOME/.bash_profile | |
test: | |
name: Run tests | |
runs-on: ubuntu-latest | |
needs: setup | |
steps: | |
- name: Run the test suite | |
run: mojo run_tests.mojo | |
package: | |
name: Create package | |
runs-on: ubuntu-latest | |
needs: setup | |
steps: | |
- name: Run the package command | |
run: mojo package lightbug_http -o lightbug_http.mojopkg | |
- name: Upload package to release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
file: lightbug_http.mojopkg | |
tag: latest-build | |
overwrite: true |