Skip to content

Update bits-info.sh #58

Update bits-info.sh

Update bits-info.sh #58

Workflow file for this run

---
# SPDX-FileCopyrightText: (c) 2024 ale5000
# SPDX-License-Identifier: GPL-3.0-or-later
name: "Tools tester"
permissions: {}
on:
push:
paths:
- ".github/workflows/tools-tester.yml"
- "tools/**"
pull_request:
paths:
- ".github/workflows/tools-tester.yml"
- "tools/**"
workflow_dispatch:
jobs:
base:
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
- macos-12
name: "Tools test (${{ matrix.os }})"
runs-on: "${{ matrix.os }}"
steps:
- name: "Checkout sources"
uses: actions/checkout@v4
- name: "Test script on bash"
shell: bash
run: |
# Testing script...
printf '%s\n\n' 'bits-info.sh:'
#'${{ github.workspace }}/tools/bits-info.sh'
- name: "Test script on Oils (under macOS)"
if: "${{ matrix.os == 'macos-latest' }}"
shell: bash
run: |
# Testing script...
brew install oils-for-unix
printf '\n%s\n\n' 'bits-info.sh:'
osh '${{ github.workspace }}/tools/bits-info.sh'