Skip to content

Added function for calculating number of MOSFETS. #89

Added function for calculating number of MOSFETS.

Added function for calculating number of MOSFETS. #89

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up CMake
run: |
sudo apt-get update
sudo apt-get install -y cmake
shell: bash
- name: Configure and build AlphaLogosTests
run: |
mkdir build
cd build
cmake .. -D CMAKE_BUILD_TYPE=Release -D CMAKE_INSTALL_PREFIX=.. -DBUILD_ONLY_TESTS=ON
make AlphaLogosTests
working-directory: ${{ github.workspace }}
- name: Run AlphaLogosTests
run: |
cd build
./AlphaLogosTests
working-directory: ${{ github.workspace }}