Skip to content

Build Management and Continuous Integration

agrov edited this page Feb 14, 2020 · 2 revisions

I used GitHub Actions to build: Python application

The yml file used to build it can be found under .github/workflows

GitHub Actions help you automate your software development workflows in the same place you store code and collaborate on pull requests and issues. You can write individual tasks, called actions, and combine them to create a custom workflow.

I used Using Travis CI for Continuous Delivery:

Build Status

The yml file used to build it can be found under master branch.This file specifies the programming language used, the desired building and testing environment (including dependencies which must be installed before the software can be built and tested), and various other parameters.

Clone this wiki locally