Update language exposé. #272
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 Ubuntu | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
job_build_ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- id: CHECKOUT_SOURCE | |
uses: actions/checkout@v3 | |
- id: INSTALL_ADDITIONAL_BUILD_DEPENDENCIES | |
run: sudo apt install -y eatmydata libtidy-dev libxml2-dev libxslt1-dev | |
- id: CONFIGURE | |
run: eatmydata ./configure | |
- id: MAKE | |
run: eatmydata make release asan | |
- id: TEST | |
run: eatmydata make test | |
- id: TEST_ASAN | |
run: eatmydata make testa |