v1.8.99 #3
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: Test | |
on: push | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Wget | |
run: sudo apt install wget | |
- name: Download install | |
run: wget https://raw.githubusercontent.com/freescout-helpdesk/freescout/dist/tools/install.sh | |
- name: chmod installer | |
run: chmod u+x install.sh | |
- name: Run installer | |
run: sudo ./install.sh |