Skip to content

fix: install Python on GitHub Actions workflow #4

fix: install Python on GitHub Actions workflow

fix: install Python on GitHub Actions workflow #4

Workflow file for this run

name: GNU Guile 3.0
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Install dependencies
run: |
sudo apt update
sudo apt install automake autoconf libtool pkg-config make gcc
sudo apt install guile-3.0 guile-3.0-libs guile-3.0-dev
sudo apt install python3 python3-dev
- name: Checkout repository
uses: actions/checkout@v2
- name: Bootstrap
run: autoreconf -vif
- name: Configure
run: ./configure
- name: Make distribution
run: make distcheck