test: #9 upgrade を削除して動作確認 #17
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 arm64-Ubuntu and macOS | |
# feature/* ブランチへの Push 時に実行 | |
on: | |
push: | |
branches: | |
- feature/* | |
jobs: | |
# ARM64 の Ubuntu 環境での動作確認 | |
ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
with: | |
platforms: linux/arm64 | |
- name: Install required packages | |
run: sudo apt-get update && sudo apt-get install -y git sudo | |
- name: Install dotfiles | |
run: | | |
echo $SHELL | |
uname -a | |
yes | ./bin/ubuntu_install.sh \ | |
&& ls -la ~/ | grep .zshrc | |
# macOS 環墨での動作確認 | |
macos: | |
runs-on: macos-14 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install dotfiles | |
run: | | |
yes | ./bin/mac_install.sh \ | |
&& ls -la ~/ | grep .zshrc |