Merge pull request #43 from jeroenvermeulen/fix-6.4-templates #65
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build package and test | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
name: CI | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
ref: refs/heads/master | |
- name: Setup | |
run: | | |
sudo apt-get install ruby-dev build-essential debhelper devscripts rpm xalan wget -y | |
sudo gem install fpm | |
- name: Build Package | |
run: ./create_packages | |
- name: Test Package | |
run: sudo ./ci_test |