ci: try to make git work in github actions #21
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
# SPDX-License-Identifier: BSD-3-Clause | |
# Copyright (c) 2023 Robin Jarry | |
--- | |
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: fedora:latest | |
steps: | |
- run: | | |
dnf install -y \ | |
make gcc ninja-build meson git gcovr scdoc \ | |
libasan \ | |
libcmocka-devel \ | |
libedit-devel \ | |
libevent-devel \ | |
numactl-devel \ | |
python3-pyelftools | |
- uses: actions/checkout@v4 | |
- run: make | |
- run: make coverage | |
lint: | |
runs-on: ubuntu-latest | |
container: debian:testing | |
env: | |
DEBIAN_FRONTEND: noninteractive | |
steps: | |
- run: | | |
apt-get update | |
apt-get install -y make clang-format git jq | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- run: make lint | |
- run: | | |
echo "$${{ toJSON(github.event) }}" | jq | |
git config --global --add safe.directory $PWD | |
git log --oneline --decorate "origin/${{ github.base_ref }}.." | |
if: ${{ github.base_ref && github.ref }} |