mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-08 14:34:01 -06:00
21 lines
364 B
YAML
21 lines
364 B
YAML
---
|
|
name: CI
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- 'WIP**'
|
|
- '4.*'
|
|
- 'CURA-*'
|
|
pull_request:
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
container: ultimaker/cura-build-environment
|
|
steps:
|
|
- name: Checkout Cura
|
|
uses: actions/checkout@v2
|
|
- name: Build
|
|
run: docker/build.sh
|
|
- name: Test
|
|
run: docker/test.sh
|