Add mirror configuration parameter #100
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
--- | |
name: install | |
on: | |
pull_request: | |
defaults: | |
run: | |
working-directory: 'nephelaiio.docker' | |
jobs: | |
local: | |
name: local install | |
runs-on: ubuntu-latest | |
steps: | |
- name: check out the codebase | |
uses: actions/checkout@v3 | |
with: | |
path: 'nephelaiio.docker' | |
- name: set up python 3 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: install pipx | |
run: python3 -m pip install --user pipx | |
- name: install pipx | |
run: python3 -m pipx ensurepath | |
- name: run local install | |
run: ./install.sh --local | |
- name: test Docker binary | |
run: docker --version | |
- name: test Docker permissions | |
run: docker ps |