diff --git a/.build.yml b/.build.yml deleted file mode 100644 index 02eef2b..0000000 --- a/.build.yml +++ /dev/null @@ -1,14 +0,0 @@ -kind: pipeline -type: exec -name: AerScript Build - -steps: -- name: compile - commands: - - make release -- name: install - commands: - - make install -- name: test - commands: - - make tests diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..e479273 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,20 @@ +name: Build +run-name: ${{ github.actor }} runs Gitea Actions +on: [push] + +jobs: + AerScript: + strategy: + runs-on: oscw + container: + image: codingworkshop/oscw-runner:latest + steps: + - name: Clone repository + uses: actions/checkout@v3 + with: + fetch-depth: 0 + - name: Build AerScript + run: | + make release + make install + make tests