Update README.md #9
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: 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 |