[fix] modify activation function #7
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: InfernoAI CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install CMake | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y cmake | |
- name: Install build tools | |
run: | | |
sudo apt-get install -y build-essential | |
- name: Build InfernoAI Library | |
run: | | |
mkdir -p build | |
cd build | |
cmake .. | |
make | |