-
Notifications
You must be signed in to change notification settings - Fork 42
54 lines (46 loc) · 1.16 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
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
test:
name: Run tests
runs-on: ubuntu-latest
needs: setup
steps:
- name: Install Magic
run: |
curl -ssL https://magic.modular.com | bash
source $HOME/.bash_profile
- name: Run the test suite
run: magic run mojo run_tests.mojo
package:
name: Create package
runs-on: ubuntu-latest
needs: setup
steps:
- name: Install Magic
run: |
curl -ssL https://magic.modular.com | bash
source $HOME/.bash_profile
- name: Run the package command
run: magic 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