[WIP] On-disk Lloyd clusterization #42
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: C/C++ CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Pull submodules | |
run: git submodule update --init --recursive | |
- name: Build docker images | |
run: docker build -t local . | |
- name: Run build | |
run: docker run --rm local make |