Pipenv install in deploy mode
This commit is contained in:
parent
9916216d24
commit
7e14092d17
2 changed files with 4 additions and 4 deletions
|
@ -9,7 +9,7 @@ jobs:
|
|||
- checkout
|
||||
- restore_cache:
|
||||
key: cache-{{ .Branch }}-{{ checksum "Pipfile.lock" }}
|
||||
- run: pipenv install --dev
|
||||
- run: pipenv install --dev --deploy
|
||||
- run: git clone https://github.com/kewlfft/ansible-aur.git ~/.ansible/plugins/modules/aur --depth=1
|
||||
- save_cache:
|
||||
key: cache-{{ .Branch }}-{{ checksum "Pipfile.lock" }}
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
- name: Create VSCode user directory
|
||||
file:
|
||||
path: '{{ home }}/.config/Code - OSS/User'
|
||||
path: '{{ home }}/.config/Code/User'
|
||||
state: directory
|
||||
owner: "{{ user }}"
|
||||
mode: 0755
|
||||
|
@ -19,14 +19,14 @@
|
|||
- name: Install VSCode settings
|
||||
copy:
|
||||
src: ./files/vscode-settings.json
|
||||
dest: "{{ home }}/.config/Code - OSS/User/settings.json"
|
||||
dest: "{{ home }}/.config/Code/User/settings.json"
|
||||
mode: 0644
|
||||
owner: "{{ user }}"
|
||||
|
||||
- name: Install VSCode keybindings
|
||||
copy:
|
||||
src: ./files/vscode-keybindings.json
|
||||
dest: "{{ home }}/.config/Code - OSS/User/keybindings.json"
|
||||
dest: "{{ home }}/.config/Code/User/keybindings.json"
|
||||
mode: 0644
|
||||
owner: "{{ user }}"
|
||||
|
||||
|
|
Loading…
Reference in a new issue