chore: keyd mapping #447
This file contains hidden or 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: Ubuntu LTS 20.04 Test Installation | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| run-github-ubuntu-installation: | |
| runs-on: ubuntu-20.04 | |
| steps: | |
| - run: echo "Will run test installation on ubuntu." | |
| - run: sudo apt-get install git zsh | |
| - name: Check out dotfiles | |
| uses: actions/checkout@v2 | |
| with: | |
| ref: ${{ github.event.ref }} | |
| path: .dotfiles | |
| - name: Check out yasli | |
| uses: actions/checkout@v2 | |
| with: | |
| repository: agronskiy/yasli | |
| path: .yasli | |
| - run: echo $PWD | |
| - name: Performing installation | |
| run: DOTFILES=${{ github.workspace }}/.dotfiles ./.yasli/yasli-main | |
| - name: Checking idempotence | |
| run: DOTFILES=${{ github.workspace }}/.dotfiles ./.yasli/yasli-main | |
| - run: echo "This job's status is ${{ job.status }}." |