aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
authorJeff Vander Stoep <jeffv@google.com>2023-02-17 23:53:37 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2023-02-17 23:53:37 +0000
commitef764b6e83135531c1cfb1641b53582e6ffcfdce (patch)
treefca6e46b70bad6ee4fb8ad4463affed590fb6d63 /.github/workflows/ci.yml
parent0339f9f56cd4d9b4a27da6f6305942c73f38692c (diff)
parentb28e5bc0e94741dd46983276586fdf08ebb3bace (diff)
downloadthread_local-ef764b6e83135531c1cfb1641b53582e6ffcfdce.tar.gz
Upgrade thread_local to 1.1.7 am: 4039605b26 am: 8180afdffe am: 7b3c674a52 am: b28e5bc0e9
Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/thread_local/+/2442943 Change-Id: Ie99d891e6623e561e20b71a23350a9db2bcef9f5 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
new file mode 100644
index 0000000..1d0e51b
--- /dev/null
+++ b/.github/workflows/ci.yml
@@ -0,0 +1,16 @@
+on: [push, pull_request]
+
+name: Continuous integration
+
+jobs:
+ test:
+ name: Test
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+ - uses: dtolnay/rust-toolchain@1.59.0
+ with:
+ components: rustfmt
+ - run: cargo fmt -- --check
+ - run: cargo test
+ - run: cargo bench