Skip to content

Change working directory for configure step #4

Change working directory for configure step

Change working directory for configure step #4

Workflow file for this run

name: C/C++ CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run configure
working-directory: .
run: ./configure
- name: make
run: make
- name: make check
run: make check
- name: make distcheck
run: make distcheck