Move to Codeberg #163
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: pastad | |
| 'on': | |
| push | |
| jobs: | |
| pastad: | |
| name: pasta server | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: '1.18' | |
| - name: Install requirements | |
| run: make requirements | |
| - name: Compile binaries | |
| run: make pastad pasta | |
| - name: Run tests | |
| run: make test |