This repository has been archived by the owner on May 11, 2024. It is now read-only.
Bump rojopolis/spellcheck-github-actions from 0.35.0 to 0.36.0 #107
Workflow file for this run
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: General CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: sudo apt install make gcc | |
- name: Compile | |
run: make -j$(nproc) | |
- name: Install | |
run: sudo make install | |
- name: Start application | |
run: oven 100 & sleep 3 | |
- name: Get usage | |
run: "ps -C oven -o %C; echo number of cores on the system: $(nproc)" | |
- name: Stop application | |
run: killall oven || true | |
- name: Uninstall | |
run: sudo make uninstall | |
auto-merge: | |
needs: build | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
contents: write | |
steps: | |
- uses: fastify/github-action-merge-dependabot@v3 |