add: ARM アーキテクチャの macOS 環境でインストールをテストするステップを追加 #16
Workflow file for this run
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
name: Check install script | |
on: [push] | |
jobs: | |
# Ubuntu 環境での動作確認 | |
ubuntu: | |
runs-on: ubuntu-latest | |
container: ubuntu:latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install required packages | |
run: apt-get update && apt-get install -y git sudo | |
- name: Install dotfiles | |
run: | | |
bash ./bin/install.sh | |
# macOS 環墨での動作確認 | |
macos: | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install dotfiles | |
run: | | |
uname -a | |
./bin/install.sh |