From 9a46135de55ba08f829c5260e051a51a61caceba Mon Sep 17 00:00:00 2001 From: Eliot Jones Date: Mon, 10 Jan 2022 22:50:37 +0000 Subject: [PATCH] start writing an action for integration tests --- .github/workflows/run_integration_tests.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/run_integration_tests.yml diff --git a/.github/workflows/run_integration_tests.yml b/.github/workflows/run_integration_tests.yml new file mode 100644 index 00000000..270fc65d --- /dev/null +++ b/.github/workflows/run_integration_tests.yml @@ -0,0 +1,20 @@ +name: Run Integration Tests + +on: + push: + branches: [ master ] + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + - name: Set up dotnet core + uses: actions/setup-dotnet@v1 + with: + dotnet-version: "2.1.x" + + - name: Download the archive + run: mkdir archive && wget http://eliot-jones.com:8081/part2-archive.7z -P archive/ && ls archive \ No newline at end of file