Add News post about OSMC 2024 #96
Workflow file for this run
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: citest | |
on: | |
push: | |
pull_request: | |
release: | |
jobs: | |
citest: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v2 | |
#- name: Setup tmate session, see https://github.com/marketplace/actions/debugging-with-tmate | |
# uses: mxschmitt/action-tmate@v3 | |
- name: prepare machine | |
run: | | |
sudo apt-get install autoconf | |
sudo apt-get install build-essential | |
sudo apt-get install devscripts | |
sudo apt-get install liburi-perl | |
sudo apt-get install libencode-perl | |
sudo apt-get install libwww-perl | |
sudo apt-get install libhtml-lint-perl | |
sudo apt-get install ruby-bundler | |
sudo bundle install | |
- name: run build | |
run: | | |
make build | |
- name: run tests | |
run: | | |
make test |