Minor change #1
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
--- | |
# 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' |