Skip to content

Bump github/codeql-action from 2 to 3 #43

Bump github/codeql-action from 2 to 3

Bump github/codeql-action from 2 to 3 #43

Workflow file for this run

name: App
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
container: alpine:latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install deps
run: apk add --no-cache --update clang-extra-tools
- name: Lint code
run: clang-format --dry-run --Werror **/*.c **/*.h
test:
runs-on: ubuntu-latest
container: alpine:latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install deps
run: apk add --no-cache --update binutils gcc make musl-dev libc-dev check-dev
- name: Run tests
run: make test
- name: Run app
run: |
make
./password-generator