Skip to content

Instantly share code, notes, and snippets.

@mrgreyves
Created October 15, 2023 17:12
Show Gist options
  • Save mrgreyves/18658af2e8b1ca49f1ace675197581bd to your computer and use it in GitHub Desktop.
Save mrgreyves/18658af2e8b1ca49f1ace675197581bd to your computer and use it in GitHub Desktop.
name: Run tests for OTUS homework
on:
push:
branches-ignore: main
pull_request:
branches-ignore: main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout this repo
uses: actions/checkout@v2
with:
ref: ${{ github.ref }}
- name: Checkout repo with tests
uses: actions/checkout@v2
with:
repository: "express42/otus-homeworks"
ref: 2023-07
path: "./otus-homeworks/"
- name: Run tests
run: curl https://raw.githubusercontent.com/express42/otus-homeworks/2023-09/run.sh | bash
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment