Fixes on CI workflow pipeline. #13
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: Puppet Build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Install OpenJDK | |
run: snap install openjdk | |
- name: Install Ballerina | |
run: wget https://dist.ballerina.io/downloads/2201.8.4/ballerina-2201.8.4-swan-lake-linux-x64.deb | sudo dpkg --install ballerina-2201.8.4-swan-lake-linux-x64.deb && rm ballerina-2201.8.4-swan-lake-linux-x64.deb | |
- name: Check Ballerina installation | |
run: bal -v | |
- name: Ballerina project build | |
run: cd puppet && bal build |