diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..c1921e5 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,17 @@ +name: 'Test' +on: + pull_request: + branches: [ "master" ] + push: + branches: [ "master" ] + +env: + CARGO_TERM_COLOR: always + +jobs: + dummy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Greet + run: echo "Hello from CI"