Add check for BeeAI container builds #6
Workflow file for this run
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: BeeAI make build | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| beeai-make-build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install packages required | |
| run: | | |
| sudo apt-get install -y podman podman-compose | |
| sudo apt-get remove -y docker | |
| - name: Checkout Git Repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Run make build | |
| run: | | |
| cd beeai | |
| alias docker=podman | |
| podman-compse -f compose.yaml build |