2024-11-28 17:39:34 +00:00
|
|
|
name: isspam build
|
|
|
|
run-name: isspam build and memory check
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- run: apt update
|
|
|
|
- run: apt install build-essential valgrind make -y
|
|
|
|
- name: Check out repository code
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
- name: List files in the repository
|
|
|
|
run: |
|
|
|
|
ls ${{ gitea.workspace }}
|
2024-11-30 20:04:32 +00:00
|
|
|
- run: make
|