-
Notifications
You must be signed in to change notification settings - Fork 4
33 lines (29 loc) · 921 Bytes
/
test.yml
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
name: 'test'
on: # rebuild any PRs and main branch changes
pull_request:
push:
branches:
- main
jobs:
build:
concurrency:
group: "${{ github.workflow }} @ ${{ github.ref }}"
cancel-in-progress: true
runs-on: ubuntu-latest
steps:
- name: Checkout (GitHub)
uses: actions/checkout@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Pre-build dev container image
uses: devcontainers/[email protected]
with:
imageName: ghcr.io/centre-for-humanities-computing/danish-foundation-models-devcontainer
cacheFrom: ghcr.io/centre-for-humanities-computing/danish-foundation-models-devcontainer
push: never
runCmd:
make test