Skip to content

Commit

Permalink
Merge pull request #215 from forkeith/build_and_test_in_ci
Browse files Browse the repository at this point in the history
Build devcontainer and run tests in CI
  • Loading branch information
sethreno authored Sep 30, 2023
2 parents bacee1a + 806f6c7 commit d9ff034
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: 'build'
on: # rebuild any PRs and main branch changes
pull_request:
push:
branches:
- main
- master

jobs:
build:
runs-on: ubuntu-latest
steps:

- name: Checkout (GitHub)
uses: actions/checkout@v3

- name: Build and run dev container task
uses: devcontainers/ci@v0.3
with:
runCmd: dotnet test

0 comments on commit d9ff034

Please sign in to comment.