Skip to content

Actions(deps): Bump actions/checkout from 4.2.0 to 4.2.1 #61

Actions(deps): Bump actions/checkout from 4.2.0 to 4.2.1

Actions(deps): Bump actions/checkout from 4.2.0 to 4.2.1 #61

Workflow file for this run

# Copyright (c) 2024 Sebastian Pipping <[email protected]>
# Licensed under GNU Affero GPL v3 or later
name: Run smoke test
# Drop permissions to minimum for security
permissions:
contents: read
on:
pull_request:
push:
schedule:
- cron: '0 16 * * 5' # Every Friday 4pm
workflow_dispatch:
jobs:
smoke_test:
name: Run the test suite
strategy:
matrix:
python-version: [3.8, 3.12] # no particular need for in-between versions
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
with:
python-version: ${{ matrix.python-version }}
- name: Run smoke test
run: |
set -x
python3 --version
./Caddyfile.generate --config sites.cfg.EXAMPLE --saltstack > actual-output.txt
diff -u0 \
<(tail -n +3 .github/workflows/expected-output.txt) \
<(tail -n +3 actual-output.txt)