Skip to content

Test bash

Test bash #691

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- '**'
tags-ignore:
- '**'
concurrency:
group: ${{ github.event_name != 'pull_request' && github.run_id || github.ref }}
cancel-in-progress: true
jobs:
x86_64-macos-native:
name: "x86_64: macOS Ventura, Xcode 14.2, Valgrind"
# See: https://github.com/actions/runner-images#available-images.
runs-on: macos-13
env:
CC: 'clang'
HOMEBREW_NO_AUTO_UPDATE: 1
HOMEBREW_NO_INSTALL_CLEANUP: 1
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set Xcode version
run: |
sudo xcode-select --switch /Applications/Xcode_14.2.app
xcodebuild -version
clang --version
- name: Install and cache Valgrind
uses: ./.github/actions/install-homebrew-valgrind
- name: Run valgrind
run: |
which bash
valgrind bash -c 'echo Hello'