Merge pull request #65 from ontodev/save-tables #476
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
on: [push, pull_request] | |
name: Continuous integration | |
jobs: | |
build_and_test: | |
name: Test nanobot | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build and test | |
run: | | |
make deps | |
make target/release/nanobot | |
make test | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: nanobot | |
path: target/release/nanobot | |
if-no-files-found: error |