Remove pi-hole maintainers as reviewers #7
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 and test tre | |
on: | |
push: | |
branches: | |
# Run workflow on every push | |
- '**' # matches every branch | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
Test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install prerequisites | |
run: sudo apt-get install -y autoconf automake gettext libtool zip autopoint | |
# The test need en_US.ISO-8859-1 locale enabled | |
- name: Set locale | |
run: | | |
sudo sed -i '/en_US ISO-8859-1/s/^#//g' /etc/locale.gen | |
sudo locale-gen | |
sudo update-locale LANG=en_US.ISO-8859-1 | |
- name: Checkout repository | |
uses: actions/[email protected] | |
- name: Prepare tre | |
run: ./utils/autogen.sh | |
- name: Build | |
run: | | |
./configure | |
make | |
make check | |