Add make targets to run nakama/cardinal and to run the testsuite #5
Workflow file for this run
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: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
build-cardinal: | |
name: Build Cardinal | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./cardinal | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Build Cardinal Docker Image | |
run: docker build . |