Bump actions/setup-python from 5.1.0 to 5.1.1 #212
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
name: Distcheck CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: apt update | |
run: sudo apt update | |
- name: Install build dependencies | |
run: sudo apt install ubuntu-dev-tools autopoint gettext git2cl gobject-introspection intltool libgtk-3-dev libindicator3-dev liblightdm-gobject-1-dev pkg-config xfce4-dev-tools | |
- name: autogen | |
run: ./autogen.sh | |
- name: make | |
run: make | |
- name: make check | |
run: make check | |
- name: make distcheck | |
run: make distcheck |