Add reverse-string approaches #330
Workflow file for this run
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: vimscript / main | |
on: | |
push: | |
branches: [master, main] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
ci: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- name: Install project dependencies | |
run: | | |
sudo apt-get update -q | |
sudo apt-get install libncurses5-dev libncursesw5-dev git make build-essential | |
git clone https://github.com/vim/vim.git | |
cd vim/src | |
sudo make | |
sudo make install | |
- name: Run exercism/vimscript ci (runs tests) for all exercises | |
run: bin/ci |