mirror of
https://github.com/AdnanHodzic/auto-cpufreq.git
synced 2025-08-17 15:48:22 +02:00
* Create build-linux.yml * Update build-linux.yml * build-linux: run as sudo * Create nix-build.yaml * Rename nix-build.yaml to build-nix.yaml * build-nix: rename workflow to 'Nix Flake' * README: add workflow status badges
29 lines
526 B
YAML
29 lines
526 B
YAML
name: Linux Build
|
|
|
|
on:
|
|
push:
|
|
paths-ignore:
|
|
- "README.md"
|
|
- ".gitignore"
|
|
- "LICENSE"
|
|
pull_request:
|
|
|
|
jobs:
|
|
build_linux:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4.1.1
|
|
|
|
- name: Install poetry
|
|
run: pipx install poetry
|
|
|
|
- name: "Setup Python"
|
|
uses: actions/setup-python@v5.0.0
|
|
with:
|
|
python-version: 3.12
|
|
cache: "poetry"
|
|
|
|
- name: "Install auto-cpufreq"
|
|
run: sudo ./auto-cpufreq-installer --install
|
|
|