aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-02-18 06:24:51 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-02-18 06:24:51 +0000
commit735829d6c0bbdb31c2dc5a017a0918fae8c83876 (patch)
treefca6e46b70bad6ee4fb8ad4463affed590fb6d63 /.github/workflows
parentf2a855ee56dbbf62fe18c7aab00d44506a3610ea (diff)
parentb28e5bc0e94741dd46983276586fdf08ebb3bace (diff)
downloadthread_local-735829d6c0bbdb31c2dc5a017a0918fae8c83876.tar.gz
Snap for 9626528 from b28e5bc0e94741dd46983276586fdf08ebb3bace to udc-release
Change-Id: Iba9bcb81f0744278806450aece4f2aec06650cff
Diffstat (limited to '.github/workflows')
-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