From 6f8c1da403e418e243fac88b5d94db3886ec725b Mon Sep 17 00:00:00 2001 From: Nate Maninger Date: Sat, 30 Mar 2024 20:51:33 -0700 Subject: [PATCH] add ci --- .github/dependabot.yml | 8 ++++++++ .github/workflows/main.yml | 18 ++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 .github/dependabot.yml create mode 100644 .github/workflows/main.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..7377d37 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,8 @@ +version: 2 +updates: +- package-ecosystem: cargo + directory: "/" + schedule: + interval: daily + time: "08:00" + open-pull-requests-limit: 10 diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..bdd987b --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,18 @@ +name: Main + +on: + push: + branches: + - master + pull_request: + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Setup Environment + run: | + rustup update stable + - name: Test + run: cargo test