This repository was archived by the owner on Nov 28, 2025. It is now read-only.
fix multiple redirects due to pagination from reader (#28) #100
This file contains hidden or 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: | |
| branches: [master] | |
| pull_request: | |
| types: ['opened', 'reopened', 'synchronize', 'ready_for_review'] | |
| jobs: | |
| build: | |
| if: "!contains(github.event.head_commit.message, 'skip ci')" | |
| runs-on: ubuntu-latest | |
| container: | |
| image: crystallang/crystal:1.16.3-alpine | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: apk add --no-cache yarn yaml-static sqlite-static libarchive-dev libarchive-static acl-static expat-static zstd-static lz4-static bzip2-static libjpeg-turbo-dev libpng-dev tiff-dev cmake | |
| - name: Build | |
| run: make static || make static | |
| - name: Linter | |
| run: make check | |
| - name: Run tests | |
| run: make test | |
| - name: Upload binary | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: mango | |
| path: mango | |
| - name: build arm32v7 object file | |
| run: make arm32v7 || make arm32v7 | |
| - name: Upload object files | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: object files | |
| path: ./*.o |