wip: dir organisation, script cleanup
This commit is contained in:
11
.github/workflows/ci.yml
vendored
Normal file
11
.github/workflows/ci.yml
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
name: Dotfiles CI
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
tests:
|
||||
name: Run test suite
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Run tests
|
||||
run: ./scripts/test.sh
|
||||
10
.github/workflows/main.yml
vendored
10
.github/workflows/main.yml
vendored
@@ -1,10 +0,0 @@
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
tests:
|
||||
runs-on: ubuntu-latest
|
||||
name: tests
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Run tests
|
||||
run: make test
|
||||
14
.github/workflows/publish.yml
vendored
Normal file
14
.github/workflows/publish.yml
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
name: Dotfiles publisher
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
publish-installer:
|
||||
name: Publish install script
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Publish to CDN
|
||||
run: ./scripts/publish.sh
|
||||
Reference in New Issue
Block a user