[update]add show_environment #30
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
# Reference: | |
# - [dotfilesのすゝめ | kouki’s blog](https://blog.kmdkuk.com/2022/07/16/dotfilesのすゝめ.html) | |
# - [Running jobs in a container - GitHub Docs](https://docs.github.com/en/actions/using-jobs/running-jobs-in-a-container) | |
# - [GitHub Actionsを使って、自分用にカスタムしたArch LinuxのISOイメージを作る](https://zenn.dev/inkohx/articles/3dbe67c0db1322) | |
name: CI | |
on: | |
push: | |
jobs: | |
setup-ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup dotfiles on Ubuntu | |
run: bash setup/linux/setup.sh | |
setup-arch: | |
runs-on: ubuntu-latest | |
container: | |
image: archlinux:base | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup dotfiles on Arch Linux | |
run: bash setup/linux/setup.sh |