Skip to content

chore: go 1.23

chore: go 1.23 #100

Workflow file for this run

name: Dotfiles Installation
on:
push:
branches:
- master
pull_request_target:
workflow_dispatch:
jobs:
install:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
steps:
- name: Clone this repository
uses: actions/checkout@v2
- name: Install using Makefile
run: |
if [ "$RUNNER_OS" == "macOS" ]; then
make
else
sudo make
fi
- name: Verify runcom setup
run: source $HOME/.bash_profile
- name: Run tests
if: matrix.os == 'macos-latest'
run: make test