github: change the CODEOWNERS from @exercism/maintainers-admin to @exercism/guardians #429
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: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
ci: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- name: Checkout test runner | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
with: | |
repository: exercism/8th-test-runner | |
token: ${{ secrets.TEST_RUNNER_PAT }} | |
path: 8th-test-runner | |
ref: main | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@8c0edbc76e98fa90f69d9a2c020dcb50019dc325 | |
with: | |
install: true | |
- name: Build and push | |
uses: docker/build-push-action@c56af957549030174b10d6867f20e78cfd7debc5 | |
with: | |
context: 8th-test-runner | |
push: false | |
load: true | |
tags: exercism/8th-test-runner:latest | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
build-args: ZIP_PASSWORD=${{secrets.ZIP_PASSWORD}} | |
- name: Run tests for all exercises | |
run: bin/test |