[tensor_filter] Fix wrong spelling in spec string #85
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: Minimal meson build in Ubuntu | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ ubuntu-20.04, ubuntu-22.04 ] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v1 | |
- name: install minimal requirements | |
run: | | |
sudo apt-get update && \ | |
sudo apt-get install -y libglib2.0-dev libjson-glib-dev libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev libunwind-dev googletest \ | |
gstreamer1.0-plugins-good | |
- uses: BSFishy/[email protected] | |
with: | |
action: test | |
# TODO: add more subplugins to be built | |
# TODO: add unit testing | |
# TODO: add valgrind testing |