Merge pull request #10 from nxxm/feature/pagination-support #31
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 | |
on: [push] | |
jobs: | |
build: | |
name: build-linux | |
runs-on: ubuntu-latest | |
container: | |
image: tipibuild/tipi-ubuntu | |
options: --user root | |
env: | |
GH_USER: nxxmgh | |
GH_PASS: ${{ secrets.USER_PAT_NXXMGH_TOKEN_FOR_GH }} | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: tipi builds project | |
run: | | |
export HOME=/root | |
mkdir -p ~/.tipi | |
tipi . -t linux-cxx17 --dont-upgrade --verbose --test all |