cicd.yml 358 B

1234567891011121314151617181920
  1. ---
  2. name: CI/CD
  3. on:
  4. push:
  5. branches:
  6. - master
  7. - 'WIP**'
  8. - '4.*'
  9. - 'CURA-*'
  10. pull_request:
  11. jobs:
  12. build:
  13. name: Build and test
  14. runs-on: ubuntu-latest
  15. container: ultimaker/cura-build-environment
  16. steps:
  17. - name: Checkout Cura
  18. uses: actions/checkout@v2
  19. - name: Build and test
  20. run: docker/build.sh