mirror of https://github.com/einverne/dotfiles.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
565 B
30 lines
565 B
name: build |
|
on: [push, pull_request] |
|
jobs: |
|
ubuntu: |
|
name: ubuntu-bootstrap |
|
runs-on: ubuntu-latest |
|
steps: |
|
- uses: actions/checkout@master |
|
- name: build |
|
env: |
|
CI_MODE: true |
|
run: | |
|
make bootstrap |
|
make tmux |
|
macos: |
|
name: macos-bootstrap |
|
runs-on: macos-latest |
|
steps: |
|
- uses: actions/checkout@master |
|
- name: build |
|
env: |
|
CI_MODE: true |
|
run: | |
|
make |
|
make bootstrap |
|
make dotfiles |
|
#make macos |
|
#make asdf |
|
#make brew |
|
make tmux
|
|
|