Replace circleci with github actions
This commit is contained in:
parent
5b75026f50
commit
05c84a593d
3 changed files with 18 additions and 13 deletions
|
@ -1,12 +0,0 @@
|
|||
version: 2.0
|
||||
|
||||
jobs:
|
||||
build:
|
||||
docker:
|
||||
- image: circleci/python:latest
|
||||
working_directory: ~/dotfiles
|
||||
steps:
|
||||
- checkout
|
||||
- run: ./scripts/setup.sh
|
||||
- run: git clone https://github.com/kewlfft/ansible-aur.git ~/.ansible/plugins/modules/aur --depth=1
|
||||
- run: ./scripts/lint.sh
|
17
.github/workflows/lint.yml
vendored
Normal file
17
.github/workflows/lint.yml
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
name: Lint
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Set up Python 3.7
|
||||
uses: actions/setup-python@v1
|
||||
with:
|
||||
python-version: 3.7
|
||||
- name: Install dependencies
|
||||
run: ./scripts/setup.sh
|
||||
- name: Run linters
|
||||
run: ./scripts/lint.sh
|
|
@ -1,6 +1,6 @@
|
|||
# Dotfiles
|
||||
|
||||
[![CircleCI](https://circleci.com/gh/RealOrangeOne/dotfiles.svg?style=svg)](https://circleci.com/gh/RealOrangeOne/dotfiles)
|
||||
![](https://github.com/RealOrangeOne/dotfiles/workflows/Lint/badge.svg)
|
||||
|
||||
Settings and Preferences for transfer between machines
|
||||
|
||||
|
|
Loading…
Reference in a new issue