Skip to content

Update README.md

Update README.md #9

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up git repository
uses: actions/checkout@v3
- name: Install dependencies
run: sudo apt-get -y install make python3-pip python3-venv
- name: Run 'make clean' process
run: make clean
- name: Run 'make test' process
run: make test