Update .gitlab-ci.yml #749
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: Test on Virtual machine | |
on: | |
- push | |
- pull_request | |
jobs: | |
ubuntu: | |
name: Ubuntu 20.04 | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: GitHub repository checkout | |
uses: actions/checkout@v3 | |
- name: Run script | |
run: ./scripts/test.sh | |
macos: | |
name: macOS Big Sur 11 | |
runs-on: macos-11 | |
steps: | |
- name: GitHub repository checkout | |
uses: actions/checkout@v3 | |
- name: Set up environment | |
run: brew install coreutils | |
- name: Run script | |
run: ./scripts/test.sh |