mirror of
https://github.com/awalsh128/cache-apt-pkgs-action.git
synced 2025-09-09 04:37:38 +00:00
- Refactored README.md - Added workflows for version export and management. - Removed src directory, following Go best practices - Added COMMANDS.md documentation Saving the AI semi-slop for now with broken states to get a snapshot. Too lazy to setup another chained repo.
119 lines
3 KiB
YAML
119 lines
3 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [dev-v2.0]
|
|
tags: ['v*'] # Trigger on version tags
|
|
pull_request:
|
|
branches: [dev-v2.0]
|
|
schedule:
|
|
- cron: 0 0 * * * # Run at 00:00 UTC every day
|
|
workflow_dispatch:
|
|
inputs:
|
|
debug:
|
|
description: Run in debug mode.
|
|
type: boolean
|
|
required: false
|
|
default: false
|
|
|
|
env:
|
|
DEBUG: ${{ github.event.inputs.debug || false }}
|
|
SHELLOPTS: errexit:pipefail
|
|
|
|
jobs:
|
|
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install Go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: "1.21"
|
|
cache: true
|
|
|
|
- name: Install Go module dependencies
|
|
run: go mod download
|
|
|
|
- name: Build
|
|
run: go build -v ./...
|
|
|
|
- name: Check file encodings
|
|
run: |
|
|
./scripts/check_utf8.sh
|
|
|
|
- name: Check file encoding changes
|
|
id: git-check
|
|
run: |
|
|
if [[ -n "$(git status --porcelain)" ]]; then
|
|
echo "::error::Some files are not in UTF-8 encoding. Please run ./scripts/check_utf8.sh locally and commit the changes."
|
|
git status --porcelain
|
|
exit 1
|
|
fi
|
|
|
|
- name: trunk.io Lint
|
|
uses: trunk-io/trunk-action@v1
|
|
with:
|
|
arguments: check
|
|
|
|
- name: Test with coverage
|
|
run: go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...
|
|
|
|
- name: Upload coverage to Codecov
|
|
uses: codecov/codecov-action@v4
|
|
with:
|
|
files: ./coverage.txt
|
|
fail_ci_if_error: true
|
|
|
|
validate-scripts:
|
|
runs-on: ubuntu-latest
|
|
needs: build
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Check script syntax
|
|
run: |
|
|
for script in scripts/*.sh; do
|
|
echo "Checking syntax for $script"
|
|
bash -n "$script"
|
|
done
|
|
|
|
- name: Check scripts are executable
|
|
run: |
|
|
for script in scripts/*.sh; do
|
|
if [[ ! -x "$script" ]]; then
|
|
echo "::error::Script $script is not executable. Run 'chmod +x $script' and commit the changes."
|
|
exit 1
|
|
fi
|
|
done
|
|
|
|
- name: Check menu integration
|
|
run: |
|
|
echo "Checking if all scripts are integrated in menu.sh..."
|
|
for script in scripts/*.sh; do
|
|
# Skip menu.sh itself
|
|
if [[ "$(basename "$script")" == "menu.sh" ]]; then
|
|
continue
|
|
fi
|
|
# Look for the script path in menu.sh
|
|
if ! grep -q "\".*$(basename "$script")\"" scripts/menu.sh; then
|
|
echo "::error::Script $(basename "$script") is not integrated in menu.sh"
|
|
exit 1
|
|
fi
|
|
done
|
|
|
|
- name: Run script tests
|
|
run: |
|
|
if [[ -d "scripts/tests" ]]; then
|
|
for test in scripts/tests/*_test.sh; do
|
|
if [[ -f "$test" ]]; then
|
|
echo "Running test: $test"
|
|
bash "$test"
|
|
fi
|
|
done
|
|
fi
|
|
|
|
|
|
|