Skip to content

Reword and cleanup

Reword and cleanup #3

Workflow file for this run

---
# See:
# - https://forgejo.org/docs/latest/user/actions/
name: CI
# Build on each push
on: [push]
env:
RETENTION_DAYS: 3
jobs:
build:
runs-on: ubuntu-latest
# Not using a matrix to keep things simple and reuse steps in this CI
steps:
- uses: actions/checkout@v3
- run: sudo apt-get -y update
- run: sudo apt-get -y install --no-install-recommends intltool libcaja-extension-dev libnautilus-extension-dev
- run: test -d caja && test -d nautilus
- run: cd caja && ./bootstrap.sh
- run: cd nautilus && ./bootstrap.sh
- run: cd caja && ./configure && make
- run: cd nautilus && ./configure && make