Run tests on Ubuntu 24.04. #253
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: Build Debian package | |
on: [push, pull_request] | |
jobs: | |
build-deb-package: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: build | |
uses: dawidd6/[email protected] | |
with: | |
# Optional, relative to workspace directory | |
source_directory: . | |
# Optional, relative to workspace directory | |
artifacts_directory: output | |
# Optional, value from `debian/changelog` is used if not defined | |
os_distribution: noble | |
# Optional, target architecture, defaults to amd64 | |
cpu_architecture: amd64 |