-
-
Notifications
You must be signed in to change notification settings - Fork 14
34 lines (29 loc) · 796 Bytes
/
test.yml
File metadata and controls
34 lines (29 loc) · 796 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Test
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
name: Tests
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2
with:
install: true
- name: Build and push
uses: docker/build-push-action@0adf9959216b96bec444f325f1e493d4aa344497
with:
context: .
push: false
load: true
tags: exercism/csharp-test-runner:latest
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Run Tests in Docker
run: bin/run-tests-in-docker.sh