Skip to content

Minor change

Minor change #1

Workflow file for this run

---
# SPDX-FileCopyrightText: (c) 2024 ale5000
# SPDX-License-Identifier: GPL-3.0-or-later
name: "Utils tester"
permissions: {}
on:
push:
paths:
- ".github/workflows/utils-tester.yml"
- "utils/**"
pull_request:
paths:
- ".github/workflows/utils-tester.yml"
- "utils/**"
workflow_dispatch:
jobs:
deviceinfo:
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
- macos-13
name: "DeviceInfo (${{ matrix.os }})"
runs-on: "${{ matrix.os }}"
steps:
- name: "Checkout sources"
uses: actions/checkout@v4
- name: "Test script on Bash"
shell: bash
run: |
# Testing script...
bash --version | head -n 1
printf '\n'
bash '${{ github.workspace }}/utils/device-info.sh' --version
printf '\n'
bash '${{ github.workspace }}/utils/device-info.sh' -- '${{ github.workspace }}/utils/test-files/Getprop-EMU-Pixel 4 API 33.txt'