-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaction.yml
More file actions
36 lines (33 loc) · 781 Bytes
/
action.yml
File metadata and controls
36 lines (33 loc) · 781 Bytes
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
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: dragon-build
description: Build a package with dragon
on:
push:
paths-ignore:
- '**/*.md'
- '**/*.txt'
branches:
- master
- 'dev/**'
pull_request:
paths-ignore:
- '**/*.md'
- '**/*.txt'
branches:
- master
- 'dev/**'
runs:
using: "composite"
steps:
- run: |
brew install ldid
python3 -m pip install --upgrade pip
pip3 install dragon
shell: bash
- run: |
dragon
shell: bash
- run: |
dragon c b r
shell: bash